Sharp APL

1 program Added 2026-02-27T00:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: SHARP APL, I.P. Sharp APL
Provenance: commit 2b1dc292cb · authored 2026-02-27T12:21:21+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

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

Related languages

SIMPL+ (0.28)SML# (0.25)A# (0.20)Sing# (0.20)Spec# (0.20)

LLM-contributed programs

Fibonacci Sequence

Provenance: commit 2b1dc292cb · authored 2026-02-27T12:21:21+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.apl · license: Public Domain · added: 2026-02-27T00:00:00Z
∇ Z←FIBO N;I
⍝ Compute Fibonacci sequence of length N using iteration
  Z←N⍴0
  →(N<1)/EXIT
  Z[1]←0
  →(N<2)/EXIT
  Z[2]←1
  I←3
LP:→(I>N)/EXIT
  Z[I]←Z[I-1]+Z[I-2]
  I←I+1
  →LP
EXIT:
∇

⎕←FIBO 10

Contribute — propose a file extension

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