14 lines
219 B
Plaintext
14 lines
219 B
Plaintext
type Integer {
|
|
int value;
|
|
|
|
String toString();
|
|
}
|
|
|
|
class IntBox() : Integer impl Integer {
|
|
init int value;
|
|
|
|
String toString() { return new StrBox(value = intToStr(value)); }
|
|
|
|
export Integer : value, toString;
|
|
}
|