summaryrefslogtreecommitdiff
path: root/wk1/pset1/mario-more/mario.c
diff options
context:
space:
mode:
Diffstat (limited to 'wk1/pset1/mario-more/mario.c')
-rw-r--r--wk1/pset1/mario-more/mario.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/wk1/pset1/mario-more/mario.c b/wk1/pset1/mario-more/mario.c
index fd261b3..9ba12b8 100644
--- a/wk1/pset1/mario-more/mario.c
+++ b/wk1/pset1/mario-more/mario.c
@@ -29,8 +29,9 @@ void print_grid(size)
{
for (int j = 0; j < size; j++)
{
+ if
printf("#");
- }
+ }
printf("\n");
}
}