Python-With-Gtk-Template/src/__builtins__.py

14 lines
291 B
Python

import builtins
class Builtins:
def hello_world():
print("Hello, world!")
def hello_user():
print("Hello, user!")
# NOTE: There areto ways to add global items. like so.
builtins.hello_user = hello_user
__builtins__.update({"hello_world": hello_world})