Comments

Helios comments are C-like.

Single-line comments

Single-line comments use two forward slashes (//):

func main(_, _, _) -> Bool {
	// This is a comment.
	true
}

Multi-line comments

Multi-line comments use /* ... */:

func main(_, _, _) -> Bool {
	/*
		This is a multi-line comment.
	*/
	true
}