Single line / trailing comments

Denoted by //.

1// hello there!
2foo // this is a trailing comment

Docstrings

To add a docstring to any block, use ///.

1/// This is a docstring for a class
2class Foo {
3 /// This is a docstring for a property
4 property1 string
5}

Multiline comments

Multiline comments are denoted via {// and //}.

1{// this is a multiline comment
2 foo
3 bar
4//}