-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Documentation nonexistent quitprocs module #14331
Comments
my guess is that this was never committed to nim repo, according to |
import std/quitprocs
proc fun1() {.noconv.} = echo "ok1"
proc fun2() = echo "ok2"
proc fun3() {.noconv.} = echo "ok3"
proc fun4() = echo "ok4"
addQuitProc(fun1)
addQuitClosure(fun2)
addQuitProc(fun3)
addQuitClosure(fun4) prints ok3 instead of what a user would expect: why not instead overload |
Well, it's a start.... |
Thanks, awesome. 🙂 |
quitprocs.nim
on Nim git repo.The text was updated successfully, but these errors were encountered: