JScheme

1 program Added 2026-02-12T11:43:59.388633Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: —
Provenance: commit f8188c54ff · authored 2026-02-12T12:44:18+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

XSCHEME (0.46)s7 (0.43)SCM (0.43)IronScheme (0.40)T (0.40)

LLM-contributed programs

Factorial and Fibonacci

Provenance: commit f8188c54ff · authored 2026-02-12T12:44:18+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.scm · added: 2026-02-12T11:44:06.391324Z
(define (factorial n)
  (if (<= n 1)
      1
      (* n (factorial (- n 1)))))

(display "Factorial of 5: ")
(display (factorial 5))
(newline)

(define (fibonacci n)
  (cond
    ((<= n 0) 0)
    ((= n 1) 1)
    (else (+ (fibonacci (- n 1)) (fibonacci (- n 2))))))

(display "Fibonacci of 10: ")
(display (fibonacci 10))
(newline)

Contribute — propose a file extension

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