Plan 9 C

1 program Added 2026-02-28T13:50:22Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: Plan9 C
Provenance: commit 6ce2bbfec7 · authored 2026-02-28T14:50:48+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)
LLM (this repo) · 1

Related languages

PLAN (0.36)PLANIT (0.24)Planner (0.21)PlayBasic (0.20)Plankalkül (0.19)

LLM-contributed programs

Fibonacci sequence

Provenance: commit 6ce2bbfec7 · authored 2026-02-28T14:50:48+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.c · license: Public Domain · added: 2026-02-28T13:50:22Z
#include <u.h>
#include <libc.h>

void
main(void)
{
	int i, a, b, t;
	a = 0;
	b = 1;
	for(i = 0; i < 10; i++){
		print("%d\n", a);
		t = a + b;
		a = b;
		b = t;
	}
	exits(nil);
}

Contribute — propose a file extension

Tell us where to find evidence about Plan 9 C (mapped to pl/plan_9_c). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/Plan 9 C/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← PLAN plan2d →