We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Could we support this?
let foo = proc() {.cps:C.} = echo "foo" foo()
And if possible, even this?
proc foo() {.cps:C.} = proc bar() {.cps:C.} = echo "bar" bar() foo()
and this
proc foo() {.cps:C.} = let bar = proc() {.cps:C.} = echo "bar" bar() foo()