Files
Nim/tests/stdlib/tquit.nim
2018-11-23 11:58:28 +01:00

13 lines
171 B
Nim

discard """
output: '''
just exiting...
'''
"""
# Test the new beforeQuit variable:
proc myExit() {.noconv.} =
write(stdout, "just exiting...\n")
addQuitProc(myExit)