Create Lexer.h

This commit is contained in:
SinusFox
2023-05-09 13:33:52 +02:00
parent 80ec5a3879
commit e55342acd2
2 changed files with 25 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
#include <stdio.h>
#include "Lexer.h"
int main() {
char* sourcecode = "Hello World the second - I coded this before. So yeah, FOXES ARE SUPERIOR.\nBut the professor wants us to write the following: \"index = 2 * count + 42;\"";
printf(sourcecode);
return 0;
}