Files
hakorune/local_tests/test_filebox_debug.hako

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)