Files

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())