diff options
author | Josh <joshua.liu@sourceobby.com> | 2025-01-21 09:54:43 -0500 |
---|---|---|
committer | Josh <joshua.liu@sourceobby.com> | 2025-01-21 09:54:43 -0500 |
commit | d03cb95135eae338d8fa864f05325cd5cd5eb7e6 (patch) | |
tree | e7cbb92c668c7086b04448908f790539a3ec3ae0 /squaretest.c | |
parent | 89810561a269ad6d11ecae58c49e209314e14c1a (diff) |
feat: testing printing cpu core functionality and graphing behavior
Diffstat (limited to 'squaretest.c')
-rw-r--r-- | squaretest.c | 7 |
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+---+"); + } +} |