mirror of
https://github.com/Karmaz95/Snake_Apple.git
synced 2026-03-30 14:00:16 +02:00
9 lines
100 B
C
9 lines
100 B
C
// clang -o hello hello.c
|
|
#include <stdio.h>
|
|
|
|
int main() {
|
|
printf("Hello!\n");
|
|
return 0;
|
|
}
|
|
|