1
0
Fork 0
mirror of synced 2025-09-23 12:18:44 +00:00
ZoKrates/zokrates_cli/examples/book/comments.zok
2022-04-06 20:23:58 +02:00

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;
}