kuroko/test/testElseIf.krk

13 lines
170 B
Python
Raw Permalink Normal View History

2021-01-04 15:44:16 +03:00
let x = 2
if x == 1:
print("one")
else if x == 2:
print("two")
else if x == 3:
print("three")
else:
print("something else")
print("outside of if/else")