Add support for the GAP language

This commit is contained in:
Max Horn
2014-04-04 23:46:39 +02:00
parent f39456ee47
commit 078a2877c7
9 changed files with 2531 additions and 0 deletions

23
samples/GAP/example.gd Normal file
View File

@@ -0,0 +1,23 @@
#############################################################################
##
#W example.gd
##
## This file contains a sample of a GAP declaration file.
##
DeclareProperty( "SomeProperty", IsLeftModule );
DeclareGlobalFunction( "SomeGlobalFunction" );
#############################################################################
##
#C IsQuuxFrobnicator(<R>)
##
## <ManSection>
## <Filt Name="IsQuuxFrobnicator" Arg='R' Type='Category'/>
##
## <Description>
## Tests whether R is a quux frobnicator.
## </Description>
## </ManSection>
##
DeclareSynonym( "IsQuuxFrobnicator", IsField and IsGroup );