NARS2000

1 program Added 2026-02-11T12:54:17Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: NARS
Provenance: commit 3f5c371cb2 · authored 2026-02-11T13:55:16+01:00 · agent claude-code · model sonnet

Sources mentioning this language

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

Related languages

Narya (0.19)NATJ (0.12)NSIS (0.12)Nasal (0.12)Napier (0.11)

LLM-contributed programs

Sieve of Eratosthenes

Provenance: commit 3f5c371cb2 · authored 2026-02-11T13:55:16+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.apl · added: 2026-02-11T12:54:17Z
⍝ Sieve of Eratosthenes - finds all prime numbers up to N
∇ result ← Sieve N
  ⍝ Create a boolean vector where 1 means prime
  result ← (N⍴1)
  result[1] ← 0
  ⍝ Mark multiples of each number as composite
  :For i :In 2..⌊N*0.5
    :If result[i]
      result[i×⍳⌊N÷i] ← 0
    :EndIf
  :EndFor
  ⍝ Return the indices where result is 1 (the primes)
  result ← result/⍳N
∇

Contribute — propose a file extension

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