1
1
mirror of https://github.com/github/semantic.git synced 2024-12-20 05:11:44 +03:00
semantic/bench/bench-fixtures/python/if-statement-functions.py
2018-03-07 19:34:20 -05:00

13 lines
137 B
Python

def foo(): return "bipp"
def bar(): return foo()
def baz(): return baz()
def why(): return "elle"
if True:
foo()
else:
why()