[Issue 3462] Add a clean way to exit a process.
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Sat Oct 31 22:26:48 PDT 2009
http://d.puremagic.com/issues/show_bug.cgi?id=3462
--- Comment #2 from Leandro Lucarella <llucax at gmail.com> 2009-10-31 22:26:43 PDT ---
If this is accepted, I guess the discussion in this thread should be revised:
http://www.digitalmars.com/webnews/newsgroups.php?art_group=digitalmars.D&article_id=99432
Personally I think:
--------------------
try {
// code
}
catch {
// code
}
--------------------
Should be a shortcut to:
--------------------
try {
// code
}
catch (Exception) {
// code
}
--------------------
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
More information about the Digitalmars-d-bugs
mailing list