Advertisement
Guest User

Untitled

a guest
Mar 24th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. class Foo2
  2. fun ref odd() =>
  3. @printf[I32]("I'm expecially odd at line %d\n".cstring(), __loc.line())
  4.  
  5. actor Main
  6. new create(env: Env) =>
  7. let b = Foo2() // Bug: the () are not needed here
  8. b.odd()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement