Comments

Single line comment

# this is commented

These may also be at the end of a line

var i = 1; # this is the comment part

Embedded comments

var distance #`{in meters} = (30 #`{meters} * 100 #`{seconds});
say distance; # prints: 3000

Multi-line comments

/*
    This is a multi-line comment
*/