FlooP

1 program Added 2026-02-07T15:07:41.028354Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: Function Loop
Provenance: commit 6eebb3cf9c · authored 2026-02-07T16:08:15+01:00 · agent claude-code · model sonnet

Sources mentioning this language

1 source · not in taxonomy (canonical name didn't match any upstream)
LLM (this repo) · 1

Related languages

LOOP (0.26)Funnel (0.25)SQF (0.23)FRAN (0.21)FFP (0.21)

LLM-contributed programs

Factorial

Provenance: commit 6eebb3cf9c · authored 2026-02-07T16:08:15+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.floop · added: 2026-02-07T15:07:35.460142Z
DEFINE PROCEDURE "FACTORIAL" [N]:
BLOCK 0: BEGIN
  OUTPUT <= 1;
  CELL(0) <= N;
  MU-LOOP:
    BLOCK 1: BEGIN
      IF CELL(0) = 0, THEN:
        QUIT BLOCK 1;
      OUTPUT <= OUTPUT * CELL(0);
      CELL(0) <= CELL(0) - 1;
    BLOCK 1: END;
BLOCK 0: END.

Contribute — propose a file extension

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