1
0

DATA,READを実装.

This commit is contained in:
otya128
2015-08-19 13:02:02 +09:00
parent 190e655b90
commit 4c7487bb31
6 changed files with 111 additions and 5 deletions

View File

@@ -43,6 +43,14 @@ class TypeMismatch : SmileBasicError
super("Type mismatch");
}
}
class OutOfDATA : SmileBasicError
{
this()
{
this.errnum = 13;
super("Out of DATA");
}
}
class DuplicateVariable : SmileBasicError
{
this()