Comments
Single line comments start with //
:
rcaron
// This is a comment
rcaron
// This is a comment
Multi line comments start with /#
and end with #/
,
just think of it as if the C-style //
and POSIX-style #
comments were combined to form this multi line comment:
rcaron
/# This is amulti linecomment #/
rcaron
/# This is amulti linecomment #/
Shebang
A shebang can also be used in RCaron.
rcaron
#!/usr/bin/env rcaronprint 'normal code'
rcaron
#!/usr/bin/env rcaronprint 'normal code'