Files
Nuake-custom/Nuake/Vendors/wren/test/api/handle.wren
2025-01-30 22:41:17 -05:00

12 lines
229 B
Plaintext

class Handle {
foreign static value=(value)
foreign static value
}
Handle.value = ["list", "of", "strings"]
// Make sure the handle lives through a GC.
System.gc()
System.print(Handle.value) // expect: [list, of, strings]