mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-07 05:30:31 +00:00
10 lines
167 B
R
10 lines
167 B
R
|
#include <qwaq/globals.rh>
|
||
|
#include <qwaq/fields.rh>
|
||
|
#include <qwaq/builtins.rh>
|
||
|
|
||
|
void () main =
|
||
|
{
|
||
|
printf ("Hello, ");
|
||
|
printf ("world!");
|
||
|
printf ("\n");
|
||
|
};
|