6 lines
No EOL
164 B
Text
6 lines
No EOL
164 B
Text
def main(field x) -> field:
|
|
return if x == 0 then\
|
|
0\
|
|
else\
|
|
1/x\// executed even for x := 0, which leads to the execution failing
|
|
fi |