mirror of
https://github.com/github/semantic.git
synced 2024-12-24 23:42:31 +03:00
10 lines
110 B
Python
10 lines
110 B
Python
|
|
def const(a, b):
|
|
def result():
|
|
return a
|
|
|
|
def zilch(b):
|
|
return b
|
|
|
|
return result()
|