ht's Scheme Interpreter  1.0
a simplified scheme interpreter implementation
tokenizertest.cpp
Go to the documentation of this file.
1 #include "preprocessor.hpp"
2 #include "tokenizer.hpp"
3 #include <iostream>
4 #include <fstream>
5 #include <algorithm>
6 #include <string>
7 using namespace std;
8 
9 int main()
10 {
11  ifstream ifs("test/tokenizer.test");
12  SchemeUnit s(ifs);
14  for_each(t.tokens.begin(), t.tokens.end(), [](const string& c) { /* pending */ });
15 
16 
17  return 0;
18 }
SchemeUnit(std::istream &schemeStream)
Definition: preprocessor.cpp:6
Tokenizer(const std::vector< std::string > &lines)
Definition: tokenizer.cpp:18
int main()
std::vector< std::string > lines