9 lines
183 B
Plaintext
9 lines
183 B
Plaintext
// Simple test with debug
|
|
local file
|
|
file = new FileBox()
|
|
|
|
// Check argument count
|
|
print("Calling open with 2 args...")
|
|
local result
|
|
result = file.open("test.txt", "w")
|
|
print("Done!") |