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)
Related languages
LLM-contributed programs
Fibonacci Numbers
Provenance: commit bf8ad4752a · authored 2026-02-11T13:26:17+01:00 · agent claude-code-recovery · model sonnet · WebSearch disabled
! 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