diff options
author | Marvin Borner | 2020-11-02 21:19:46 +0100 |
---|---|---|
committer | Marvin Borner | 2020-11-02 21:19:46 +0100 |
commit | f5764042751c94598e8d8dfd7a9f9cd0efe57f37 (patch) | |
tree | b89af24982117733ebbce4a166d799dff12e6ad9 /res | |
parent | 7099f31ccd88bd2afa3ca5fb52610ef1b3206c5e (diff) |
Ported c4 compiler (kinda working!)
Diffstat (limited to 'res')
-rw-r--r-- | res/test.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/res/test.c b/res/test.c new file mode 100644 index 0000000..ead84da --- /dev/null +++ b/res/test.c @@ -0,0 +1,5 @@ +int main() +{ + printf("Hello, world!\n"); + return 0; +} |