summaryrefslogtreecommitdiff
path: root/io/coroutine.io
blob: 8c9d74334772982c863ddc56c896205290981509 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
vizzini := Object clone
vizzini talk := method(
	"Fezzik, are there rocks ahead?" println
	yield
	"No more rhymes now, I mean it." println
	yield
)

fezzik := Object clone
fezzik rhyme := method(
	yield
	"If there are, we'll all be dead." println
	yield
	"Anybody want a peanut?" println
)

vizzini @@talk
fezzik @@rhyme

Coroutine currentCoroutine pause