7 lines
89 B
C
7 lines
89 B
C
// @COMPILECMD gcc $@ -o hw.out
|
|
#include <stdio.h>
|
|
|
|
void main(){
|
|
puts("Hello world");
|
|
}
|