Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmain.cpp
More file actions
Latest commit
17 lines (16 loc) · 321 Bytes
/
Copy pathmain.cpp
File metadata and controls
17 lines (16 loc) · 321 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include"src/ESPLiveScript.h"
#define__TEST_DEBUG
string script = "\
void main()\n\
{\n\
for(int i=0;i<20;i++)\n\
{\n\
printfln(\"i:%2d 3xi:%2d\",i,3*i);\n\
}\n\
}";
intmain() {
// put your setup code here, to run once:
Parser _parser;
Executable exec = _parser.parseScript(&script);
return0;
}