5 lines
No EOL
133 B
Text
5 lines
No EOL
133 B
Text
def main() -> field {
|
|
field a = 1f;
|
|
field b = 1_f; // allow underscore between the literal and the suffix
|
|
return a + b;
|
|
} |