From ecf960fe188bfc97c68bc9e40c69554e06bcdbce Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Fri, 26 Jun 1998 14:56:38 +0000 Subject: [PATCH] A well-known example for freeze. --- Mac/Tools/macfreeze/hello/hello.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Mac/Tools/macfreeze/hello/hello.py diff --git a/Mac/Tools/macfreeze/hello/hello.py b/Mac/Tools/macfreeze/hello/hello.py new file mode 100644 index 0000000000..a713733aaa --- /dev/null +++ b/Mac/Tools/macfreeze/hello/hello.py @@ -0,0 +1,5 @@ +import sys + +print 'Hello world' +print 'Builtin modules:', sys.builtin_module_names +sys.exit(1) -- 2.40.0