- macros work in the new way (the "right" way?) - added test.py script, with basic test cases. Need to fill out new test builtins.
10 lines
89 B
Python
10 lines
89 B
Python
|
|
import sys;
|
|
import subprocess;
|
|
|
|
exe_path = sys.argv[1];
|
|
|
|
assert(not "TODO");
|
|
|
|
exit(0);
|
|
|