1
0
mirror of https://github.com/PDP-10/its.git synced 2026-03-02 09:56:20 +00:00
Files
PDP-10.its/src/hello/hello.c
2023-09-04 18:46:29 +02:00

13 lines
183 B
C

/* Hello world for the C programming language. */
/* To compile and link, type:
:cwd hello
:cc hello.c
:stinkr hello */
int main()
{
cprint("Hello world\n");
return 0;
}