Hi hi hi...

"F. W." <[email protected]> Mon, 30 May 2022 16:32:41 +0200
Newsgroups alt.comp.lang.pascal
Organization A noiseless patient Spider
Message-ID <[email protected]>
#include <stdio.h>

#define begin   {
#define end     }
#define writeln printf

int i;

int main ()
begin
   for (i=10; i!=0; i--)
   begin
     writeln ("Countdown: %d \n", i);
   end
end