summaryrefslogtreecommitdiff
path: root/mario.c
diff options
context:
space:
mode:
authorFudgerboy <91767657+Fudgerboy@users.noreply.github.com>2023-12-01 06:18:03 +0000
committerFudgerboy <91767657+Fudgerboy@users.noreply.github.com>2023-12-01 06:18:03 +0000
commit37bcb7f8d0d2263960e4ee6d06ed0f17b7fb06ab (patch)
tree38450f3582ee727756dfae2a452fbfcbe790fddc /mario.c
parent7d09f9d7a764db546275f4a862e18974bd920dcd (diff)
Thu, Nov 30, 2023, 10:18 PM -08:00
Diffstat (limited to 'mario.c')
-rw-r--r--mario.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/mario.c b/mario.c
index 595b7e1..7188d93 100644
--- a/mario.c
+++ b/mario.c
@@ -4,6 +4,9 @@
int main(void)
{
for (int i = 0; i < 3; i++) {
- printf("#\n");
+ for (int j = 0; j < 3; j++) {
+ printf("#");
+ }
+ printf("\n");
}
}