import inspect

print('Hello from ThreefoldVM')
print('Your Python interpreter runs as a virtual machine, executing this program. '
      'This program is also a virtual machine, and the instructions it executes '
      'create a new virtual machine.')
print('That\'s all I have to say.')

print('Some example:', inspect.stack())

