Comments
Single-line comments
#
## The hello-world program...
#
say "Hello, world!"; # with single-line comments.Multiple-line comments
/*
This is another style of a comment.
It allows multiple lines.
*/Embedded comments
var speed = (distance #`(in meters) / time #`(in seconds));Last updated