RosettaCodeData/Task/Program-termination/Aime/program-termination.aime

16 lines
102 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
void
f1(integer a)
{
if (a) {
exit(1);
}
}
integer
main(void)
{
f1(3);
return 0;
}