2021-01-04 15:44:16 +03:00
|
|
|
let x = 2
|
2021-01-02 06:12:49 +03:00
|
|
|
|
|
|
|
if x == 1:
|
2021-01-04 17:33:43 +03:00
|
|
|
print("one")
|
2021-01-02 06:12:49 +03:00
|
|
|
else if x == 2:
|
2021-01-04 17:33:43 +03:00
|
|
|
print("two")
|
2021-01-02 06:12:49 +03:00
|
|
|
else if x == 3:
|
2021-01-04 17:33:43 +03:00
|
|
|
print("three")
|
2021-01-02 06:12:49 +03:00
|
|
|
else:
|
2021-01-04 17:33:43 +03:00
|
|
|
print("something else")
|
2021-01-02 06:12:49 +03:00
|
|
|
|
2021-01-04 17:33:43 +03:00
|
|
|
print("outside of if/else")
|