Merge pull request #1477 from DeathByTape/master

Added PigLatin language identification.
This commit is contained in:
Arfon Smith
2014-08-28 09:40:47 -05:00
2 changed files with 17 additions and 0 deletions

View File

@@ -1714,6 +1714,13 @@ Perl6:
- .pl6
- .pm6
PigLatin:
type: programming
color: "#fcd7de"
lexer: Text only
extensions:
- .pig
Pike:
type: programming
color: "#066ab2"

View File

@@ -0,0 +1,10 @@
/**
* sample.pig
*/
REGISTER $SOME_JAR;
A = LOAD 'person' USING PigStorage() AS (name:chararray, age:int); -- Load person
B = FOREACH A generate name;
DUMP B;