8 lines
75 B
Nim
8 lines
75 B
Nim
if x == 0:
|
|
foo()
|
|
elif x == 1:
|
|
bar()
|
|
elif x == 2:
|
|
baz()
|
|
else:
|
|
boz()
|