Add complete assignment and starter code.

This commit is contained in:
Rob Hess
2019-04-17 16:46:07 -07:00
commit 31de8c902f
14 changed files with 461 additions and 0 deletions

10
Makefile Normal file
View File

@@ -0,0 +1,10 @@
all: scan
scan: main.cpp scanner.cpp
g++ main.cpp scanner.cpp -o scan
scanner.cpp: scanner.l
flex -o scanner.cpp scanner.l
clean:
rm -f scan scanner.cpp