-
Notifications
You must be signed in to change notification settings - Fork 2
/
hello.c
21 lines (19 loc) · 877 Bytes
/
hello.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// ============================================================================
// C source code example for the G-WAN Web Application Server (http://gwan.ch/)
// ----------------------------------------------------------------------------
// G-WAN can also run general-purpose programs (not related to the gwan server)
//
// hello.c: invoked as: ./gwan -r hello.c
//
// Do not name these scripts 'main.c' to avoid conflicts with the maintenance
// script located in gwan's executable directory.
// ============================================================================
#include <stdio.h>
int main(int argc, char *argv[])
{
puts("Hello World!\n");
return 0;
}
// ============================================================================
// End of Source Code
// ============================================================================