Pony
https://gyazo.com/ac80017648a1cf789456121d28987f3a
Pony
ponylang/ponyc: Pony is an open-source, actor-model, capabilities-secure, high performance programming language
doc
Pony Tutorial
Pony Patterns
Pony Standard Library
playground
Pony 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 を送信
actor model
session 型