From e51f89a24fb19b6ce3c6fa5bc90e197f892697e7 Mon Sep 17 00:00:00 2001
From: patraabinash29 <63745266+patraabinash29@users.noreply.github.com>
Date: Thu, 27 Oct 2022 18:33:57 +0530
Subject: [PATCH] Update 2-screw-things-up.py

changed
---
 ch03-first-python-program/2-screw-things-up.py | 1 +
 1 file changed, 1 insertion(+)

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.