From c8d355f962972570fe557abe673dc92405b8b10d Mon Sep 17 00:00:00 2001 From: David Fisher Date: Mon, 1 Jun 2020 09:25:04 -0400 Subject: [PATCH 1/2] progress on unit 1 --- src/m1e_comments_strings_print.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/m1e_comments_strings_print.py b/src/m1e_comments_strings_print.py index 18eb8a0..6df08f2 100644 --- a/src/m1e_comments_strings_print.py +++ b/src/m1e_comments_strings_print.py @@ -14,3 +14,6 @@ print('one', 'two', 'buckle my shoe') print(3 + 9) print('3 + 9', 'versus', 3 + 9) + +print("Dave Fisher") + From 6c91addb8bc63e435d9400ddd94262b139f18cc7 Mon Sep 17 00:00:00 2001 From: David Fisher Date: Mon, 1 Jun 2020 09:41:58 -0400 Subject: [PATCH 2/2] progress on unit 1 --- src/m3_turtles.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/m3_turtles.py b/src/m3_turtles.py index df507f3..b3ce3d4 100644 --- a/src/m3_turtles.py +++ b/src/m3_turtles.py @@ -64,6 +64,8 @@ dave.left(90) dave.forward(200) + + # ---------------------------------------------------------------------- # Construct a new turtle and ask it to do things. # ----------------------------------------------------------------------