aboutsummaryrefslogtreecommitdiffstats
path: root/c_lexer/test/test_lex.c
blob: 9db9054ca6f29777bacb3468e9e4fe0fda1961b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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;
}