OILS
/
mycpp
/
examples
/ invalid_print.py
View on Github
|
oilshell.org
13 lines, 3 significant
1
#!/usr/bin/env python2
2
"""
3
invalid_print.py
4
"""
5
# If this line isn't present, the file is invalid
6
# from __future__ import print_function
7
8
9
def run_tests():
10
# type: () -> None
11
12
for i in xrange(3):
13
print(
'hi'
)