mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
12 lines
100 B
Python
12 lines
100 B
Python
if x: do_x
|
|
elif y: do_y
|
|
elif z: do_z
|
|
else: do_else
|
|
|
|
if a and b:
|
|
c
|
|
# comment
|
|
elif d or e:
|
|
f
|
|
|