mirror of
https://github.com/PDP-10/its.git
synced 2026-03-02 09:56:20 +00:00
13 lines
183 B
C
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;
|
|
}
|