mirror of
https://github.com/python/cpython.git
synced 2024-11-28 08:20:55 +01:00
6 lines
95 B
Python
6 lines
95 B
Python
|
import sys
|
||
|
|
||
|
print 'Hello world'
|
||
|
print 'Builtin modules:', sys.builtin_module_names
|
||
|
sys.exit(1)
|