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

14 lines
284 B
Python
Raw Normal View History

2021-10-10 23:33:58 -05:00
import builtins
2021-10-10 23:28:19 -05:00
class Builtins:
def hello_world():
print("Hello, world!")
2021-10-10 23:33:58 -05:00
def hello_user():
print("Hello, user!")
2021-10-10 23:28:19 -05:00
2021-10-11 04:36:39 +00:00
# NOTE: There are two ways to add global items.
2021-10-10 23:33:58 -05:00
builtins.hello_user = hello_user
2021-10-10 23:28:19 -05:00
__builtins__.update({"hello_world": hello_world})