summaryrefslogtreecommitdiff
path: root/squaretest.c
diff options
context:
space:
mode:
Diffstat (limited to 'squaretest.c')
-rw-r--r--squaretest.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/squaretest.c b/squaretest.c
new file mode 100644
index 0000000..e518fe9
--- /dev/null
+++ b/squaretest.c
@@ -0,0 +1,7 @@
+#include <stdio.h>
+
+int main() {
+ for (int i = 0; i < 10; i++) {
+ printf("+---+\n| |\n+---+");
+ }
+}