aboutsummaryrefslogtreecommitdiff
path: root/src/blog/2024-09-20-c-scripting/script.c
blob: de5795920a7bff9e1baff89498d9ecfccb68706c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#if 0

bin="$(mktemp)"
cc -o "$bin" "$(realpath $0)"
"$bin"

exit 0
#endif

#include <stdio.h>

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

Generated with cgit - Back to sebastiano.tronto.net