Documentation: Difference between revisions

Content added Content deleted
(→‎{{header|Lua}}: added Lua solution)
(obsolete)
Line 41: Line 41:
end Instrument;</lang>
end Instrument;</lang>
There is also a tool called [http://sourceforge.net/projects/adadoc/ AdaDoc]. This can be used to generate documentation of an Ada module (or modules?) for a variety of different formats: HTML, LaTeX, plain text and more.
There is also a tool called [http://sourceforge.net/projects/adadoc/ AdaDoc]. This can be used to generate documentation of an Ada module (or modules?) for a variety of different formats: HTML, LaTeX, plain text and more.

=={{header|Arturo}}==

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

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

file: "Documentation.art"
}

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

return &0+&1
}</lang>


=={{header|AutoHotkey}}==
=={{header|AutoHotkey}}==