Snowball

1 program Added 2026-02-06T12:00:00Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: —
Provenance: commit 41c34b7bc4 · authored 2026-02-06T15:27:17+01:00 · agent claude-code · model sonnet

Sources mentioning this language

3 sources · pl_id: pl/snowball
LLM (this repo) · 1WikipediaWikidata · Q7548444

Related languages

Small (0.29)Sawzall (0.27)Dhall (0.21)Shill (0.21)Skull (0.21)

LLM-contributed programs

Spanish Stemmer

Provenance: commit 41c34b7bc4 · authored 2026-02-06T15:27:17+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.sbl · license: BSD · added: 2026-02-06T12:00:00Z
routines (
   prelude postlude mark_regions
   RV R1 R2
   standard_suffix
)

externals ( stem )

booleans ( is_verb is_noun )

groupings ( v )

stringescapes {}

stringdef a  hex 'E1'
stringdef e  hex 'E9'
stringdef i  hex 'ED'
stringdef o  hex 'F3'
stringdef u  hex 'FA'

define v 'aeiou{a}{e}{i}{o}{u}'

define mark_regions as (

    $pV = limit
    $p1 = limit
    $p2 = limit

    do (
        gopast v  gopast non-v  setmark pV
    )
    do (
        gopast v  gopast non-v  setmark p1
        gopast v  gopast non-v  setmark p2
    )
)

define prelude as (
    test repeat (
        [substring] among(
            'qu' (hop 2)
            '' (next)
        )
    )
)

define postlude as repeat (

    [substring] among(
        '{a~}' (<- 'a')
        '{e~}' (<- 'e')
        '{i~}' (<- 'i')
        '{o~}' (<- 'o')
        '{u~}' (<- 'u')
    )
)

define RV as $pV <= cursor
define R1 as $p1 <= cursor
define R2 as $p2 <= cursor

define standard_suffix as (
    [substring] R1 among(
        'ances' 'ancias' 'ancias' 'logias' 'encias' 'amente'
        'ismos' 'ables' 'ibles' 'istas' 'adora' 'acion'
        'antes' 'ancia' 'encia' 'mente' 'ancia' 'eria'
            (delete)
    )
)

define stem as (
    do prelude
    do mark_regions
    backwards
        do standard_suffix
    do postlude
)

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 Snowball (mapped to pl/snowball). 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/Snowball/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← snostorm snowball-programming-language →