1
0

Implement EXEC

This commit is contained in:
otya128
2016-12-23 19:25:55 +09:00
parent e8ebda83b1
commit a05c1558fa
4 changed files with 68 additions and 11 deletions

View File

@@ -50,6 +50,11 @@ class SyntaxError : SmileBasicError
}
class IllegalFunctionCall : SmileBasicError
{
this()
{
this.errnum = 4;
super("Illegal function call");
}
this(string func)
{
this.errnum = 4;