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/piglatinExtensions 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.| Extension | Source | Strength | SWH |
|---|---|---|---|
.pig | linguist | primary | 45.4K files |
.pig | pygments | primary | 45.4K files |
Related languages
LLM-contributed programs
Word Count
Provenance: commit 857ff36f91 · authored 2026-02-10T14:31:42+01:00 · agent claude-code · model sonnet · WebSearch disabled
-- 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.)