First commit

This commit is contained in:
jdavilabeaz2401 2025-11-26 13:24:06 -05:00
commit fa8978321f
2 changed files with 14 additions and 0 deletions

7
README.txt Normal file
View file

@ -0,0 +1,7 @@
This is the "Rectangular Project". As you will see this may have
been a bad choice of naming.
Step 8 renames a mis-spelled program rectanglar-solid.py to
rectangular-solid.py using the git mv command.
Ed

7
rectangle01.py Normal file
View file

@ -0,0 +1,7 @@
length = 4
width = 3
areaOfRectangle = length * width
print("Area = ",areaOfRectangle)