Pony
https://gyazo.com/ac80017648a1cf789456121d28987f3a
doc
playground
main
code:pony
actor Main
new create(env: Env) =>
〜
actor
code:pony
actor A
"""
doc string
"""
let x: String
new create(x': String) =>
x = x'
be something(y: String) =>
"""
doc string
"""
actor Main
new create(env: Env) =>
let a = A("x") // actor を起動
a.something("y") // message を送信