RosettaCodeData/Task/Program-termination/Seed7/program-termination.seed7

10 lines
188 B
Text
Raw Permalink Normal View History

2013-04-10 23:57:08 -07:00
$ include "seed7_05.s7i";
const proc: main is func
begin
# whatever logic is required in your main procedure
if some_condition then
exit(PROGRAM);
end if;
end func;