Update 'src/__builtins__.py'

This commit is contained in:
itdominator 2021-10-11 04:36:39 +00:00
parent 61901f5c28
commit 087e57442e
1 changed files with 1 additions and 1 deletions

View File

@ -8,6 +8,6 @@ class Builtins:
print("Hello, user!")
# NOTE: There areto ways to add global items. like so.
# NOTE: There are two ways to add global items.
builtins.hello_user = hello_user
__builtins__.update({"hello_world": hello_world})