From bae1cb36d972d2202908476e7373fc88943bca08 Mon Sep 17 00:00:00 2001 From: harjothkaur Date: Mon, 31 Jul 2023 21:40:33 -0500 Subject: [PATCH 1/5] steps From 7dd9f394f9d9bbd992800d0e87555f2c865e7be8 Mon Sep 17 00:00:00 2001 From: harjothkaur Date: Mon, 31 Jul 2023 21:44:50 -0500 Subject: [PATCH 2/5] step1 --- HELLOWORLD.py | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 HELLOWORLD.py diff --git a/HELLOWORLD.py b/HELLOWORLD.py new file mode 100644 index 0000000..d0be5cb --- /dev/null +++ b/HELLOWORLD.py @@ -0,0 +1,2 @@ +print("This line will be printed.") + From 8408b2ae09e7151a08e624bf68c182b33fdc24d6 Mon Sep 17 00:00:00 2001 From: harjothkaur Date: Mon, 31 Jul 2023 21:46:14 -0500 Subject: [PATCH 3/5] step1 --- README.md | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 README.md diff --git a/README.md b/README.md deleted file mode 100644 index 8c089b4..0000000 --- a/README.md +++ /dev/null @@ -1,5 +0,0 @@ -# hello-world -git checkin new repo -This is a new repo dedicated to this assignment to learn more new things in github. - -Hello World in VS Code (edited in VS Code) From b06a4b202c7a48c4f9bcff6c756394ddbef1ac33 Mon Sep 17 00:00:00 2001 From: harjothkaur Date: Mon, 31 Jul 2023 21:47:35 -0500 Subject: [PATCH 4/5] step2 --- HELLOWORLD.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/HELLOWORLD.py b/HELLOWORLD.py index d0be5cb..43191b1 100644 --- a/HELLOWORLD.py +++ b/HELLOWORLD.py @@ -1,2 +1,8 @@ print("This line will be printed.") +x = 1 +if x == 1: + # indented four spaces + print("x is 1.") + + From 3a4562deba92fd38b07a4a83547e98cce46584d6 Mon Sep 17 00:00:00 2001 From: harjothkaur Date: Mon, 31 Jul 2023 21:48:03 -0500 Subject: [PATCH 5/5] step3 --- HELLOWORLD.py | 1 + 1 file changed, 1 insertion(+) diff --git a/HELLOWORLD.py b/HELLOWORLD.py index 43191b1..316ebbd 100644 --- a/HELLOWORLD.py +++ b/HELLOWORLD.py @@ -6,3 +6,4 @@ print("x is 1.") +print("Goodbye, World!")