16 lines
301 B
Plaintext
16 lines
301 B
Plaintext
// Test birth constructor with parameters
|
|
box TestBox {
|
|
init { name }
|
|
|
|
birth(file_name) {
|
|
me.name = file_name
|
|
print("Birth called with: " + me.name)
|
|
}
|
|
}
|
|
|
|
static box Main {
|
|
main() {
|
|
local test = new TestBox("hello.txt")
|
|
return "Test complete"
|
|
}
|
|
} |