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

7 lines
126 B
Python
Raw Normal View History

2021-10-10 23:28:19 -05:00
class Builtins:
def hello_world():
print("Hello, world!")
__builtins__.update({"hello_world": hello_world})