mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 01:30:22 +00:00
Updated languages.yml to associate *.pig files with PigLatin. Added pig script example to samples/. Updated the samples.json with to account for new sample.
11 lines
164 B
Pig
11 lines
164 B
Pig
/**
|
|
* sample.pig
|
|
*/
|
|
|
|
REGISTER $SOME_JAR;
|
|
|
|
A = LOAD 'person' USING PigStorage() AS (name:chararray, age:int); -- Load person
|
|
B = FOREACH A generate name;
|
|
DUMP B;
|
|
|