summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mario.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mario.c b/mario.c
index c1fb9df..ddb4610 100644
--- a/mario.c
+++ b/mario.c
@@ -3,7 +3,7 @@
int main(void)
{
- const int n = 3;
+ int n = get_int("Size: ");
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
printf("#");