In Nim, the noReturn pragma marks a proc that never returns.
How is that different than a function that returns void
?
In Nim, the noReturn pragma marks a proc that never returns.
How is that different than a function that returns void
?
Copyright © 2021 Jogjafile Inc.
Returning
void
means the function returns nothing:The empty brackets as well as the
: void
are optional:Annotating a function with
noReturn
means the function will not return at all: