mes/doc/examples/main.c

9 lines
125 B
C
Raw Normal View History

2016-07-24 22:18:53 +01:00
int main ()
{
int i; // = 0;
2016-08-14 08:06:09 +01:00
puts ("Hi Mes!\n");
for (i = 0; i < 4; ++i)
puts (" Hello, world!\n");
return 1;
2016-07-24 22:18:53 +01:00
}