APL uses ⍝ to indicate a comment up to the end of the line. For example: ⍝ Now add the numbers: c←a+b ⍝ addition In dialects that have the ⊣ ("left") and ⊢ ("right") primitives, comments can often be inside or separate statements, in the form of ignored strings
@132ikl
APL
APL uses ⍝ to indicate a comment up to the end of the line.
For example:
⍝ Now add the numbers:
c←a+b ⍝ addition
In dialects that have the ⊣ ("left") and ⊢ ("right") primitives, comments can often be inside or separate statements, in the form of ignored strings
https://en.m.wikipedia.org/wiki/Comment_(computer_programming)