Could we support this? ```nim let foo = proc() {.cps:C.} = echo "foo" foo() ``` And if possible, even this? ```nim proc foo() {.cps:C.} = proc bar() {.cps:C.} = echo "bar" bar() foo() ``` and this ```nim proc foo() {.cps:C.} = let bar = proc() {.cps:C.} = echo "bar" bar() foo() ```