diff --git a/code/grid.py b/code/grid.py index d716575..9f71d03 100644 --- a/code/grid.py +++ b/code/grid.py @@ -113,3 +113,25 @@ def print_grid(): """ print(comment) + +#In my viw there is a much simpler way of doing it as: +def floor(): + print('+ - - - - + - - - - +') + +def beam(): + print('| | |') + +def do_four(b): + b() + b() + b() + b() + +def print_grid(): + floor() + do_four(beam) + floor() + do_four(beam) + floor() + +print_grid()