mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 01:14:41 +00:00
14 lines
187 B
Nim
14 lines
187 B
Nim
discard """
|
|
output: '''
|
|
just exiting...
|
|
'''
|
|
joinable: false
|
|
"""
|
|
|
|
# Test the new beforeQuit variable:
|
|
|
|
proc myExit() {.noconv.} =
|
|
write(stdout, "just exiting...\n")
|
|
|
|
addQuitProc(myExit)
|