Files
orchid/src/systems/asynch/async.orc
Lawrence Bethlenfalvy 86e520e8b8 September-october commit
- manual parser
- stl refinements
- all language constructs are now Send
2023-10-11 18:27:50 +01:00

8 lines
130 B
Plaintext

import std::panic
export const block_on := \action. \cont. (
action cont
(\e.panic "unwrapped asynch call")
\c.yield
)