APL\370

1 program Added 2026-02-11T09:23:32Z Agent: claude-codeModel: recovery Evidence Report issue View issues
Aliases: APL/370
Provenance: commit 0a60eeb946 · authored 2026-02-22T16:31:30+01:00 · agent claude-code · model recovery

Sources mentioning this language

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

Related languages

APL\360 (0.45)ML/370 (0.26)APLX (0.19)APL2 (0.17)PL/360 (0.17)

LLM-contributed programs

Statistical Functions

Provenance: commit 0a60eeb946 · authored 2026-02-22T16:31:30+01:00 · agent claude-code · model recovery
code.apl · added: 2026-02-11T09:23:32Z
⍝ Statistical Functions in APL
⍝ Calculate mean, sum, and standard deviation

      DATA ← 23 45 67 12 89 34 56 78

      ⍝ Calculate the average (mean)
      AVG ← (+/DATA) ÷ ⍴DATA

      ⍝ Display the average
      'Average: ', ⍕AVG

      ⍝ Calculate sum
      SUM ← +/DATA
      'Sum: ', ⍕SUM

      ⍝ Calculate standard deviation
      VARIANCE ← (+/(DATA - AVG)*2) ÷ ⍴DATA
      STDDEV ← VARIANCE * 0.5
      'Standard Deviation: ', ⍕STDDEV

Contribute — propose a file extension

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