aboutsummaryrefslogtreecommitdiffstats
path: root/c_lexer/test/test_lex.c
diff options
context:
space:
mode:
Diffstat (limited to 'c_lexer/test/test_lex.c')
-rw-r--r--c_lexer/test/test_lex.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/c_lexer/test/test_lex.c b/c_lexer/test/test_lex.c
new file mode 100644
index 0000000..9db9054
--- /dev/null
+++ b/c_lexer/test/test_lex.c
@@ -0,0 +1,14 @@
+#include <stdlib.h>
+#include <stdio.h>
+#include <assert.h>
+#include <math.h>
+
+#define POTATO 5
+
+int main(int argc, char* argv[]) {
+ char* h = "Hello World\"";
+ int j = POTATO;
+ int u = 2398uL;
+ float rt = 23.238e-283;
+ return 0;
+}