Documentation: Difference between revisions

Content added Content deleted
Line 986: Line 986:
return a + b;
return a + b;
}</lang>
}</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}}==
=={{header|OCaml}}==