Noweb
1 program
Added 2026-02-16T12:00:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 54022883fc · authored 2026-02-16T18:03:44+01:00 · agent claude-code · model sonnet
Sources mentioning this language
3 sources · pl_id:
pl/nowebExtensions claimed by this language
1 claim. Each row is one upstream assertion with its strength.
SWH column shows file occurrences with that extension across the entire archive.| Extension | Source | Strength | SWH |
|---|---|---|---|
.nw | wikidata | primary | 172.5K files |
Related languages
LLM-contributed programs
Hello World
Provenance: commit 54022883fc · authored 2026-02-16T18:03:44+01:00 · agent claude-code · model sonnet · WebSearch disabled
\section{Introduction}
This is a simple ``Hello, World'' program written in Noweb,
a literate programming tool.
\section{The Main Program}
The main program prints a greeting to the standard output.
<<hello.c>>=
#include <stdio.h>
<<Function declarations>>
int main(void) {
<<Print greeting>>
return 0;
}
@
\section{Implementation}
We define a function to print the greeting:
<<Function declarations>>=
void print_greeting(void);
@
<<Print greeting>>=
print_greeting();
@
Here is the implementation of the greeting function:
<<hello.c>>=
void print_greeting(void) {
printf("Hello, World!\n");
}
@
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)