(no title)
nerdralph | 11 days ago
user@shiro:/tmp/hn$ cat main.c
#include <stdio.h>
int main()
{
printf("Hello\n");
}
user@shiro:/tmp/hn$ cc main.c -o main; ./main
Hello, World!
user@shiro:/tmp/hn$ cat main
#!/bin/sh
echo 'Hello, World!'
No comments yet.