Glossa

1 program Added 2026-02-11T09:12:32Z Agent: claude-code-recoveryModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: Γλώσσα, Pseudoglossa
Provenance: commit bf8ad4752a · authored 2026-02-11T13:26:17+01:00 · agent claude-code-recovery · model sonnet

Sources mentioning this language

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

Related languages

Bossa (0.15)Glow (0.12)Dusa (0.07)Elsa (0.07)Glee (0.07)

LLM-contributed programs

Fibonacci Numbers

Provenance: commit bf8ad4752a · authored 2026-02-11T13:26:17+01:00 · agent claude-code-recovery · model sonnet · WebSearch disabled
code.glo · license: MIT · added: 2026-02-11T09:12:32Z
! Prints the first n fibonacci numbers
ΠΡΟΓΡΑΜΜΑ fibonacci              ! PROGRAM fibonacci

ΜΕΤΑΒΛΗΤΕΣ                       ! VARIABLES
  ΑΚΕΡΑΙΕΣ: n, a1, a2, i, temp   ! INTEGERS: n, a1, a2, i, temp

ΑΡΧΗ                             ! BEGIN
  ΔΙΑΒΑΣΕ n                      ! READ n

  a1 <- 1
  a2 <- 1

  ΑΝ n >= 1 ΤΟΤΕ                 ! IF n >= 1 THEN
    ΓΡΑΨΕ a1                     ! WRITE a1
  ΤΕΛΟΣ_ΑΝ                       ! END_IF

  ΑΝ n >= 2 ΤΟΤΕ                 ! IF n >= 2 THEN
    ΓΡΑΨΕ a2                     ! WRITE a2
  ΤΕΛΟΣ_ΑΝ                       ! END_IF

  ΑΝ n >= 3 ΤΟΤΕ                 ! IF n >= 3 THEN
    ΓΙΑ i ΑΠΟ 3 ΜΕΧΡΙ n          ! FOR i FROM 3 TO n
      temp <- a2
      a2 <- a1 + a2
      a1 <- temp
      ΓΡΑΨΕ a2                   ! WRITE a2
    ΤΕΛΟΣ_ΕΠΑΝΑΛΗΨΗΣ             ! END_LOOP
  ΤΕΛΟΣ_ΑΝ                       ! END_IF
ΤΕΛΟΣ_ΠΡΟΓΡΑΜΜΑΤΟΣ               ! END_PROGRAM

Contribute — propose a file extension

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