OILS
/
build
/
testdata
/ future_import.py
View on Github
|
oilshell.org
7 lines, 2 significant
1
#!/usr/bin/env python
2
"""
3
future_import.py
4
"""
5
from __future__ import print_function
6
7
print(
'future print'
)