FunnelWeb
1 program
Added 2026-03-06T12:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: Funnel Web
Provenance: commit bf4b2ee522 · authored 2026-03-06T09:34:52+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Hello World
Provenance: commit bf4b2ee522 · authored 2026-03-06T09:34:52+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
@t title=Hello World
This literate program produces a simple Hello World application in C,
demonstrating the FunnelWeb literate programming system.
@p hello.c
@<hello.c>==
#include <stdio.h>
int main(void)
{
printf("Hello, World!\n");
return 0;
}