1
0

HEX$に桁数指定できるようにした

This commit is contained in:
otya128
2015-08-23 13:03:57 +09:00
parent c712ab8958
commit 009c6deb61
3 changed files with 27 additions and 3 deletions

View File

@@ -64,6 +64,14 @@ class TypeMismatch : SmileBasicError
super("Type mismatch");
}
}
class OutOfRange : SmileBasicError
{
this()
{
this.errnum = 10;
super("Out of range");
}
}
class OutOfDATA : SmileBasicError
{
this()