diff --git a/07/c/1 - Countup.py b/07/c/1 - Countup.py new file mode 100644 index 0000000..de5b332 --- /dev/null +++ b/07/c/1 - Countup.py @@ -0,0 +1,5 @@ +x = 1 +while x <= 10: + print(x) + x += 1 +print("Blastoff!")