Add detection for the XC programming language.

This commit is contained in:
Richard Osborne
2013-02-09 13:13:21 +00:00
parent 24820ed935
commit 0479f72a93
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;
}