digitalmars.D - how to terminate a program
- james <james google.com> Oct 24 2008
- dsimcha <dsimcha yahoo.com> Oct 24 2008
- james <james google.com> Oct 24 2008
how to terminate the program in the middle of execution, is there any command such as halt,exit? since i dont use exception for error handling.
Oct 24 2008
== Quote from james (james google.com)'s articlehow to terminate the program in the middle of execution, is there any command
Use C's. It's in std.c.stdlib. It's called exit, takes an int and returns the exit code provided by the caller to the OS upon termination.
Oct 24 2008
dsimcha Wrote:== Quote from james (james google.com)'s articlehow to terminate the program in the middle of execution, is there any command
Use C's. It's in std.c.stdlib. It's called exit, takes an int and returns the exit code provided by the caller to the OS upon termination.
thank you very much. it works.
Oct 24 2008








james <james google.com>