forked from Orchid/orchid
- manual parser - stl refinements - all language constructs are now Send
8 lines
130 B
Plaintext
8 lines
130 B
Plaintext
import std::panic
|
|
|
|
export const block_on := \action. \cont. (
|
|
action cont
|
|
(\e.panic "unwrapped asynch call")
|
|
\c.yield
|
|
)
|