inweb-bootstrap/Examples/hellow.inweb
2019-02-04 22:26:45 +00:00

11 lines
198 B
Text
Executable file

Title: hellow
Author: Graham Nelson
Purpose: A minimal example of a C program written for inweb.
Language: C
@ =
#include <stdio.h>
int main(int argc, char *argv[]) {
printf("Hello world!\n");
}