5 lines
125 B
Text
5 lines
125 B
Text
def main() -> field {
|
|
field a = 42; // this is an end of line comment
|
|
// this is a full line comment
|
|
return a;
|
|
}
|