mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
14 lines
150 B
Python
14 lines
150 B
Python
|
|
import sys
|
|
|
|
def f():
|
|
code-here # Line end comment
|
|
#Indented comment
|
|
#Unindented comment
|
|
return 1
|
|
|
|
def g(arg):
|
|
return arg
|
|
|
|
x = g(f())
|