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

14 lines
291 B
Python
Raw Normal View History

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