summary refs log tree commit diff stats
path: root/tests/stdlib/tquit.nim
blob: 0b4a479dc4f9a960ca13f22ee32eedc9340002fb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
discard """
output: '''
just exiting...
'''
joinable: false
"""

# Test `addQuitProc`

proc myExit() {.noconv.} =
  write(stdout, "just exiting...\n")

addQuitProc(myExit)