From b330d9e2e2af9ddd2719798c44d4f5538d61d79f Mon Sep 17 00:00:00 2001 From: Martin Selway Date: Tue, 22 Jun 2021 10:14:47 +0100 Subject: [PATCH] added if else to hello01_print.py --- 01_hello/hello01_print.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/01_hello/hello01_print.py b/01_hello/hello01_print.py index 09907203e..5710aa755 100755 --- a/01_hello/hello01_print.py +++ b/01_hello/hello01_print.py @@ -1 +1,5 @@ print('Hello, World!') +if (1 == 1): + print('one is equal to 1') +else: + print('Maths has stopped working')