Documentation: Difference between revisions

Line 986:
return a + b;
}</lang>
 
=={{header|Objeck}}==
Documentation can be produced for bundles, classes and methods/functions.
 
<lang objeck>#~
Sets the named row value
@param name name
@param value value
@return true of value was set, false otherwise
~#
method : public : Set(name : String, value : String) ~ Bool {
return Set(@table->GetRowId(name), value);
}
</lang>
 
=={{header|OCaml}}==
760

edits