Comments
TuffSeal supports two types of comments:
- Single line comments (//)
- Block comments (/* */)
Single line comments:
// this is a single line comment!
// this comment cannot contain multiple lines.
Block comments:
/*
This is a block comment,
It can contain as much lines as you want.
*/
Comments are ignored by the lexer.