14 lines
180 B
Plaintext
14 lines
180 B
Plaintext
box SimpleBox {
|
|
init { value }
|
|
|
|
pack(v) {
|
|
me.value = v
|
|
}
|
|
}
|
|
|
|
static box Main {
|
|
main() {
|
|
local obj = new SimpleBox(100)
|
|
return 200
|
|
}
|
|
} |