Merge pull request #377 from rlsosborne/detect-xc-language

Add detection for the XC programming language.
This commit is contained in:
Ted Nyman
2013-06-19 13:30:45 -07:00
2 changed files with 17 additions and 0 deletions

10
samples/XC/main.xc Normal file
View File

@@ -0,0 +1,10 @@
int main()
{
int x;
chan c;
par {
c <: 0;
c :> x;
}
return x;
}