diff --git a/ch03-first-python-program/2-screw-things-up.py b/ch03-first-python-program/2-screw-things-up.py index ba0b1c8..15e21a3 100755 --- a/ch03-first-python-program/2-screw-things-up.py +++ b/ch03-first-python-program/2-screw-things-up.py @@ -16,6 +16,7 @@ even if the syntax error in the line above is corrected, because of a run-time error ''' print(hello) +print('hi') # We meant to print the string "hello"; # a variable named 'hello' doesn't exist yet.