This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

at main 257 B View raw
1// Based off of Docker's hello-world 2// This is standalone program 3#include <sys/syscall.h> 4#include <unistd.h> 5 6const char message[] = "Hello from the Void!\n"; 7 8int main() { 9 syscall(SYS_write, STDOUT_FILENO, message, sizeof(message) - 1); 10 return 0; 11}