From a074483ab36e7f9696fc3fb9913212d7bc922482 Mon Sep 17 00:00:00 2001 From: Jaewoo Kim Date: Wed, 5 Aug 2020 21:03:03 +0900 Subject: [PATCH 1/3] add main.py --- main.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 main.py diff --git a/main.py b/main.py new file mode 100644 index 0000000..e843fd8 --- /dev/null +++ b/main.py @@ -0,0 +1,3 @@ +a = 1 +b = 2 +print(a + b) From 2dcc58253ada5c9d4ec0c63bd4f57ac7868fbce1 Mon Sep 17 00:00:00 2001 From: Jaewoo Kim Date: Wed, 5 Aug 2020 21:34:48 +0900 Subject: [PATCH 2/3] refactor main.py --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index e843fd8..96ee27f 100644 --- a/main.py +++ b/main.py @@ -1,3 +1,3 @@ a = 1 -b = 2 -print(a + b) +c = 2 +print(a + c) From 0cdfee6e943e3c7ce3400c1da69ce5c6e899d4b4 Mon Sep 17 00:00:00 2001 From: Jaewoo Kim Date: Wed, 5 Aug 2020 21:39:30 +0900 Subject: [PATCH 3/3] update main.py --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index e843fd8..f179131 100644 --- a/main.py +++ b/main.py @@ -1,3 +1,3 @@ a = 1 -b = 2 -print(a + b) +d = 3 +print(a + d)