grub2: bring back build of aros-side grub2 tools
[AROS.git] / test / misc / helloworld.c
blob8c5578caf738aa8db1d45bf473a8de85947ab75a
1 /*
2 Copyright © 1995-96, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: most simple demo for AROS
6 Lang: english
7 */
8 #include <stdio.h>
10 static const char version[] __attribute__((used)) = "$VER: helloworld 41.1 (14.3.1997)\n";
12 int main (int argc, char ** argv)
14 printf ("Hello, world\n");
15 return 0;