8 lines
84 B
Plaintext
8 lines
84 B
Plaintext
|
/* $FreeBSD$ */
|
||
|
#include <stdio.h>
|
||
|
|
||
|
int main(void) {
|
||
|
puts("Hello");
|
||
|
return 0;
|
||
|
}
|