inweb-bootstrap/Examples/hellow.inweb

12 lines
198 B
Text
Raw Normal View History

2019-02-04 22:26:45 +00:00
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");
}