summaryrefslogtreecommitdiff
path: root/squaretest.c
diff options
context:
space:
mode:
authorJosh <joshua.liu@sourceobby.com>2025-01-21 09:54:43 -0500
committerJosh <joshua.liu@sourceobby.com>2025-01-21 09:54:43 -0500
commitd03cb95135eae338d8fa864f05325cd5cd5eb7e6 (patch)
treee7cbb92c668c7086b04448908f790539a3ec3ae0 /squaretest.c
parent89810561a269ad6d11ecae58c49e209314e14c1a (diff)
feat: testing printing cpu core functionality and graphing behavior
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+---+");
+ }
+}