In APL, there is no specific syntax for multi-line comments. However, you can simply use a single-line comment character (;) at the beginning of each line to achieve a similar effect.
Here's an example:
72 chars4 lines
In Ruby, you can use the =begin
and =end
delimiters to create multi-line comments.
Here's an example:
main.rb102 chars5 lines
Please note that some IDEs or text editors may have their own shortcuts or commands to insert multi-line comments for specific languages.
gistlibby LogSnag