repo.or.cz
/
minnow.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Initial commit
[minnow.git]
/
samples
/
hello_isolated.mno
blob
343e1e90933b70e27c7618d99cb1fa8c60f72d30
1
isolated actor isolated_actor
2
action greet()
3
putstring("Hello from an isolated actor")
4
exit(0)
5
end
6
end
7
8
action main()
9
spawn isolated_actor iso
10
iso::greet()
11
end