KPL

1 program Added 2026-03-11T12:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: Kid's Programming Language, Kids Programming Language
Provenance: commit 8abe664601 · authored 2026-03-11T18:09:54+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

S (0.58)J (0.54)Apl (0.54)Eta (0.51)Jac (0.51)

LLM-contributed programs

Fibonacci Sequence

Provenance: commit 8abe664601 · authored 2026-03-11T18:09:54+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.kpl · license: Public Domain · added: 2026-03-11T12:00:00Z
program Fibonacci;
var
  a, b, temp, i : integer;
begin
  a := 0;
  b := 1;
  for i := 1 to 10 do
  begin
    print(a);
    print(' ');
    temp := a + b;
    a := b;
    b := temp;
  end;
  println(a);
end

Contribute — propose a file extension

Tell us where to find evidence about KPL (mapped to pl/kpl). 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/KPL/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← KPHP KQL →