SheerPower 4GL
1 program
Added 2026-03-10T14:19:19Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: SheerPower, SP4GL
Provenance: commit c206612bfd · authored 2026-03-10T15:20:02+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
5 sources · pl_id:
pl/sheerpower4glRelated languages
LLM-contributed programs
Fibonacci Sequence
Provenance: commit c206612bfd · authored 2026-03-10T15:20:02+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
! SheerPower 4GL: Fibonacci sequence
! Compute and display the first 15 Fibonacci numbers
declare long a, b, temp, i
a = 0
b = 1
print "Fibonacci sequence:"
print a
print b
for i = 3 to 15
temp = a + b
a = b
b = temp
print b
next i
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)