Added __builtns__ extender logc

This commit is contained in:
2021-10-10 23:28:19 -05:00
parent f96974d79e
commit 9126d0a5ec
3 changed files with 10 additions and 1 deletions

6
src/__builtins__.py Normal file
View File

@@ -0,0 +1,6 @@
class Builtins:
def hello_world():
print("Hello, world!")
__builtins__.update({"hello_world": hello_world})