From ba3804b56e57a02a62661bfa3028c261db5de54c Mon Sep 17 00:00:00 2001 From: lucynao <44733630+lucynao@users.noreply.github.com> Date: Sat, 10 Oct 2020 12:27:29 +0200 Subject: [PATCH 1/4] Update hello.py --- hello.py | 1 - 1 file changed, 1 deletion(-) diff --git a/hello.py b/hello.py index d4fb0b0..1a127cb 100644 --- a/hello.py +++ b/hello.py @@ -5,7 +5,6 @@ def hello(what): print('Hello, {}!'.format(what)) - def say_what(): return 'world' From ab8c69822f4c2e90984324446946e0264d84a471 Mon Sep 17 00:00:00 2001 From: lucynao <44733630+lucynao@users.noreply.github.com> Date: Sat, 10 Oct 2020 12:36:21 +0200 Subject: [PATCH 2/4] Update hello.py --- hello.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hello.py b/hello.py index d4fb0b0..2295d10 100644 --- a/hello.py +++ b/hello.py @@ -7,7 +7,7 @@ def hello(what): def say_what(): - return 'world' + return 'world2' def main(): From dac6aa12084a903e812324a834e49d7e11cf84a0 Mon Sep 17 00:00:00 2001 From: lucynao <44733630+lucynao@users.noreply.github.com> Date: Sat, 10 Oct 2020 12:56:25 +0200 Subject: [PATCH 3/4] Update hello.py --- hello.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hello.py b/hello.py index 1a127cb..80b07dd 100644 --- a/hello.py +++ b/hello.py @@ -6,7 +6,8 @@ def hello(what): print('Hello, {}!'.format(what)) def say_what(): - return 'world' + return 'world' + def main(): From 7f82bd4d33a88485b0dee0cd174c08de2131932e Mon Sep 17 00:00:00 2001 From: lucynao <44733630+lucynao@users.noreply.github.com> Date: Sat, 10 Oct 2020 13:05:55 +0200 Subject: [PATCH 4/4] Update hello.py --- hello.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hello.py b/hello.py index da7c1e8..8df6abc 100644 --- a/hello.py +++ b/hello.py @@ -6,7 +6,7 @@ def hello(what): print('Hello, {}!'.format(what)) def say_what(): - return 'world' + return 'world failing' def main(): hello(say_what())