(halt process)
(halt)
Halts the given process. If no process is given, halts the currently running process. If no process es are running, performs as exit.
Example:
>> (define p (spawn (lambda () (show "Hello!")(newline)(suspend)(show "World!") newline)))) :: #f >> (halt p) "Hello!" :: #f