From 61901f5c28625dcea5b4b9f0d5ecba9a74b67800 Mon Sep 17 00:00:00 2001 From: itdominator <1itdominator@gmail.com> Date: Sun, 10 Oct 2021 23:33:58 -0500 Subject: [PATCH] Updated __builtns__ --- src/__builtins__.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/__builtins__.py b/src/__builtins__.py index 82e69b2..cf4b385 100644 --- a/src/__builtins__.py +++ b/src/__builtins__.py @@ -1,6 +1,13 @@ +import builtins + class Builtins: def hello_world(): print("Hello, world!") + def hello_user(): + print("Hello, user!") + + # NOTE: There areto ways to add global items. like so. + builtins.hello_user = hello_user __builtins__.update({"hello_world": hello_world})