trivionomicon/templates/system-flake/pkgs/hello-world/hello-world.c

8 lines
74 B
C
Raw Normal View History

2025-01-26 22:38:38 +01:00
#include <stdio.h>
int main()
{
printf("Hello, world!\n");
return 0;
}