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/sheerpower4gl
LLM (this repo) · 1PldbWikipediaRosettacodeWikidata · Q7492487

Related languages

Scyther (0.17)sgsh (0.17)Power Fx (0.15)SpinalHDL (0.13)Yash (0.12)

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
code.sp4 · added: 2026-03-10T14:19:19Z
! 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.)

Contribute — propose a file extension

Tell us where to find evidence about SheerPower 4GL (mapped to pl/sheerpower4gl). 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/SheerPower 4GL/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← sheep-lang Shell →