Documentation: Difference between revisions

Content added Content deleted
No edit summary
Line 45: Line 45:


<lang arturo>:doc #{
<lang arturo>:doc #{
project ~Arturo
project: ~Arturo


author "Dr.Kameleon"
author: "Dr.Kameleon"
email "drkameleon@gmail.com"
email: "drkameleon@gmail.com"
license "MIT"
license: "MIT"


file "Documentation.art"
file: "Documentation.art"
}
}


someFunc {
someFunc: {
:doc #{ description "takes two numbers and adds them up" }
:doc #{ description: "takes two numbers and adds them up" }


return &0+&1
return &0+&1