Implement lexer skeleton for cclox
This commit is contained in:
7
cclox_src/scanner.cc
Normal file
7
cclox_src/scanner.cc
Normal file
@@ -0,0 +1,7 @@
|
||||
#include "scanner.hh"
|
||||
#include "token.hh"
|
||||
#include <vector>
|
||||
|
||||
std::vector<Token> Scanner::scan_tokens() {
|
||||
return std::vector<Token>{};
|
||||
}
|
||||
Reference in New Issue
Block a user