1
0

RETURN without GOSUBするようにした

This commit is contained in:
otya128
2015-06-07 21:03:55 +09:00
parent f7c4f06eae
commit 9794c2f01c
2 changed files with 19 additions and 2 deletions

View File

@@ -35,4 +35,11 @@ class DuplicateVariable : SmileBasicError
super("Duplicate variable");
}
}
class ReturnWithoutGosub : SmileBasicError
{
this()
{
this.errnum = 30;
super("RETURN without GOSUB");
}
}