7 lines
137 B
Forth
7 lines
137 B
Forth
|
|
: anEvent
|
||
|
|
| ch |
|
||
|
|
Channel new ->ch
|
||
|
|
#[ ch receive "Ok, event is signaled !" println ] &
|
||
|
|
System sleep(1000)
|
||
|
|
ch send($myEvent) ;
|