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

7 lines
126 B
Python

class Builtins:
def hello_world():
print("Hello, world!")
__builtins__.update({"hello_world": hello_world})