actor-model.wit 133 B

1234567891011
  1. package bt:actor-model@0.0.1
  2. interface host {
  3. print: func(msg: string)
  4. }
  5. world actor {
  6. import host
  7. export activate: func()
  8. }