and i just replied "oh no. one second" and now i have this:
● /h/l/d/c_css λ cat index.html <link rel="stylesheet" href="prog.c"> ● /h/l/d/c_css λ gcc -Wall prog.c ● /h/l/d/c_css λ ./a.out Hello from C! ● /h/l/d/c_css λ
and as rendered CSS:
Hello from CSS!
and it is slightly cursed. feel free to guess how i did it or see the code below lol
cat prog.c
#define css , body:after { content: "Hello from CSS!"; color: #f0f; }
#include <stdio.h>
int main() {
printf("Hello from C!\n");
return 0;
}