src/helloworld.c
author Tero Marttila <terom@fixme.fi>
Sat, 13 Dec 2008 04:20:56 +0200
branchnew-evsql
changeset 51 c65d0f4c3bff
parent 1 b31db3248246
permissions -rw-r--r--
evsql: documentation improvements, fix consts, use bools
1
b31db3248246 a working hello
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
     1
#include <stdio.h>
b31db3248246 a working hello
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
     2
b31db3248246 a working hello
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
     3
int main (void) {
b31db3248246 a working hello
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
     4
    printf("Hello World\n");
b31db3248246 a working hello
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
     5
b31db3248246 a working hello
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
     6
    return 0;
b31db3248246 a working hello
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
     7
}