mirror of
https://github.com/Karmaz95/Snake_Apple.git
synced 2026-06-02 17:41:35 +02:00
9 lines
170 B
C
9 lines
170 B
C
#include <unistd.h>
|
|
|
|
int main() {
|
|
const char *message = "Hello, Kernelspace!\n";
|
|
write(1, message, 20); // Direct system call to write to stdout
|
|
return 0;
|
|
}
|
|
|