7 lines
97 B
Python
7 lines
97 B
Python
|
working = True
|
||
|
|
||
|
match working:
|
||
|
case True:
|
||
|
print("OK")
|
||
|
case False:
|
||
|
print()
|