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

View File

@@ -1222,6 +1222,13 @@ Visual Basic:
- .vba
- .vbs
XC:
type: programming
lexer: C
primary_extension: .xc
extensions:
- .xc
XML:
type: markup
ace_mode: xml

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;
}