Files
fds-os/examples/software/hello/void/files/hello.c
T
2026-09-22 13:23:34 +08:00

7 lines
193 B
C

#include <stdio.h>
int main(int argc, char **argv) {
printf("Hello from an FDS AArch64 software cartridge%s%s\n",
argc > 1 ? ": " : "", argc > 1 ? argv[1] : "");
return 0;
}