Pig Latin

1 program Added 2026-02-10T13:30:27Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: Pig
Provenance: commit 857ff36f91 · authored 2026-02-10T14:31:42+01:00 · agent claude-code · model sonnet

Sources mentioning this language

4 sources · pl_id: pl/piglatin
LLM (this repo) · 1LinguistPygmentsHyperpolyglot

Extensions claimed by this language

2 claims. Each row is one upstream assertion with its strength. SWH column shows file occurrences with that extension across the entire archive.
ExtensionSourceStrengthSWH
.piglinguistprimary45.4K files
.pigpygmentsprimary45.4K files

Related languages

Picrin (0.18)Latitude (0.16)Pixilang (0.16)Latino (0.15)Pixie (0.13)

LLM-contributed programs

Word Count

Provenance: commit 857ff36f91 · authored 2026-02-10T14:31:42+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.pig · license: Apache-2.0 · added: 2026-02-10T13:30:27Z
-- Word Count in Pig Latin
-- Load input data from a file
input_lines = LOAD 'input.txt' AS (line:chararray);

-- Tokenize each line into words
words = FOREACH input_lines GENERATE FLATTEN(TOKENIZE(line)) AS word;

-- Group by word
grouped_words = GROUP words BY word;

-- Count occurrences of each word
word_count = FOREACH grouped_words GENERATE group AS word, COUNT(words) AS count;

-- Order by count descending
ordered = ORDER word_count BY count DESC;

-- Store the result
STORE ordered INTO 'output';

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 Pig Latin (mapped to pl/piglatin). 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/Pig Latin/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← pig PIGS →