5 lines
142 B
Plaintext
5 lines
142 B
Plaintext
|
|
// Test with IntegerBox constructor (should return Integer)
|
||
|
|
print("Testing IntegerBox:")
|
||
|
|
local i = new IntegerBox(42)
|
||
|
|
print("Value:")
|
||
|
|
print(i)
|