// Test for dynamic FileBox plugin (Phase 9.75f-1) using nyashstd console.log("πŸ”Œ Testing Dynamic FileBox Plugin...") // Create a FileBox through dynamic library local file = new FileBox("test_dynamic.txt") // Write some content file.write("Hello from dynamic FileBox!\nγ“γ‚Œγ―ε‹•ηš„γƒ©γ‚€γƒ–γƒ©γƒͺη΅Œη”±γ§ζ›Έγ‹γ‚ŒγΎγ—γŸγ€‚") console.log("βœ… Write successful") // Read back the content local content = file.read() console.log("πŸ“– Read content: " + content) // Check if file exists local exists = file.exists() console.log("πŸ“ File exists: " + exists.toString()) // Test with another file local file2 = new FileBox("test_dynamic2.txt") file2.write("Second test file") console.log("βœ… Second file created") console.log("πŸŽ‰ Dynamic FileBox test completed!")