Documentation: Difference between revisions

Content added Content deleted
(Added Kotlin)
m (added forth comments)
Line 592:
 
But none of this is within the Fortran language definition itself.
 
=={{header|Forth}}==
Common comments in the source code is lines starting by "\ " do not forget the space
 
example :
 
<lang>\ this is a comment</lang>
 
Another good practice is describing the stack use of a function : function ( stack before -- stack at end )
 
example :
 
<lang>: cubed ( n -- n^3 ) dup dup * * ; </lang>
 
=={{header|FreeBASIC}}==