SkookumScript

1 program Added 2026-02-25T10:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: enabled Evidence Report issue View issues
Aliases: Sk, Skookum
Provenance: commit 1284c7d812 · authored 2026-02-25T19:08:19+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

3 sources · pl_id: pl/skookumscript
LLM (this repo) · 1PldbRosettacode

Related languages

SIMSCRIPT (0.30)SGScript (0.26)Scrapscript (0.24)NimScript (0.23)Skript (0.23)

LLM-contributed programs

Conditional Flow Control Examples

Provenance: commit 1284c7d812 · authored 2026-02-25T19:08:19+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch enabled
code.sk · added: 2026-02-25T10:00:00Z
// SkookumScript conditional flow control examples
// Source: https://skookumscript.com/docs/v3.0/lang/flow/conditionals/

// Basic if-else
if test? [do_this] else [do_that]

// Multi-clause conditional with result
!result: if test1? ["one"] test2? ["two"] else ["else"]

// When expression modifier
do_this when test?
obj.do_stuff when obj.valid?

// Unless modifier
do_this unless test?
do_that unless expr > 5

// Case expression with string matching
println(
  case guy.name
    'Vader' ["bad guy"]
    'Yoda'  ["good guy"]
    else    ["don't know"]
  )

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 SkookumScript (mapped to pl/skookumscript). 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/SkookumScript/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← SKNPR Calculus Skound →