15 lines
231 B
Plaintext
15 lines
231 B
Plaintext
|
|
# Minimal Nyash sample
|
||
|
|
box Greeter {
|
||
|
|
message
|
||
|
|
pack(msg) { me.message = msg }
|
||
|
|
say() { print(me.message) }
|
||
|
|
}
|
||
|
|
|
||
|
|
static box Main {
|
||
|
|
main() {
|
||
|
|
local g
|
||
|
|
g = new Greeter("Hello, Nyash!")
|
||
|
|
g.say()
|
||
|
|
}
|
||
|
|
}
|