Files
hakorune/apps/macros/examples/hang_macro.hako

13 lines
223 B
Plaintext

// hang_macro.hako
// Macro that never returns (infinite loop) to test timeout handling.
static box MacroBoxSpec {
expand(json) {
// Busy loop forever
loop(true) {
// do nothing
}
return json
}
}