defmoduleMathsdodefadd(left,right)do# Add two numbers togetherleft+rightenend
Module documentation
defmoduleMathsdo@moduledoc""" A module that implements functions for performing simple mathematic calculations """defadd(left,right)do# Add two numbers togetherleft+rightendend
Function documentation
defmoduleMathsdo@moduledoc""" A module that implements functions for performing simple mathematic calculations """@doc""" Add two numbers together """defadd(left,right)do# Add two numbers togetherleft+rightendend
Testing your documentation
@doc"""Add two numbers togetherExamples iex> Maths.add(4, 2) 5"""defadd(left,right)do# Add two numbers togetherleft+rightend