9 lines
197 B
Plaintext
9 lines
197 B
Plaintext
|
|
// Debug test for FileBox type checking
|
||
|
|
local file
|
||
|
|
file = new FileBox()
|
||
|
|
print("Created FileBox")
|
||
|
|
|
||
|
|
// Try method call
|
||
|
|
local result
|
||
|
|
result = file.open("test.txt", "w")
|
||
|
|
print("Open result: " + result)
|