Guest User

Untitled

a guest
Jul 17th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. actor Foo
  2. be run() =>
  3. _bar()
  4.  
  5. fun val _bar() =>
  6. None
  7.  
  8. actor Main
  9. new create(env: Env) =>
  10. let foo = Foo
  11. foo.run()
Add Comment
Please, Sign In to add comment