Comments: Difference between revisions

Add Ecstasy example
(Add Ecstasy example)
Line 924:
<syntaxhighlight lang="ecl"> /* this is a block comment - the terminator can be on the same line
or any succeeding line – everything in between is ignored */</syntaxhighlight>
 
=={{header|Ecstasy}}==
Comments in Ecstasy follow the two forms used by most C-family languages:
<syntaxhighlight lang="java">
/*
* This is a multi-line comment.
*/
Int i = 0; // This is an end-of-line comment
</syntaxhighlight>
 
=={{header|EDSAC order code}}==
162

edits