7 lines
150 B
Plaintext
7 lines
150 B
Plaintext
|
main = func($$args){
|
||
|
if(fs.file_exists(args[0]))
|
||
|
{
|
||
|
code = reflection.parse_code(fs.readalltext(args[0]));
|
||
|
code.run();
|
||
|
}
|
||
|
};
|