summaryrefslogtreecommitdiff
path: root/trivionomicon/templates/system-flake/pkgs/hello-world/hello-world.c
blob: d6cfa6b6b435428f09bae342139986f86c84c876 (plain)
1
2
3
4
5
6
7
#include <stdio.h>

int main()
{
	printf("Hello, world!\n");
	return 0;
}