GAP 4.8.9 installation with standard packages -- copy to your CoCalc project to get it
#############################################################################
####
##
#W doL35.g ACE Research Example Greg Gamble
##
## Provides some easy applications of the pgrelfind.g functions, using the
## perfect simple group L_3(5).
##
#Y Copyright (C) 2001 Centre for Discrete Mathematics and Computing
#Y Department of Computer Science & Electrical Eng.
#Y University of Queensland, Australia.
##
ACEResExample := rec(filename := "doL35.g", print := false);
if IsBound(IsACEResExampleOK) and IsACEResExampleOK() then
Print("gap> Print(\"L3_5s[6]:\\n\", L3_5s[6], \"\\n\");\n");
Print("L3_5s[6]:\n", L3_5s[6], "\n");
L35 := ACE_PRINT_AND_EVAL(
"L35", "PGRelFind([a, b], L3_5s[6].rels, L3_5s[6].sgens)");
elif ACEResExample.print then
## Begin
Print("L3_5s[6]:\n", L3_5s[6], "\n");
L35 := PGRelFind([a, b], L3_5s[6].rels, L3_5s[6].sgens);
## End
elif not IsBound(IsACEResExampleOK) then
Print("Error, ACEReadResearchExample: functions and variables undefined.\n",
"Please type: 'ACEReadResearchExample();'\n",
"and try again.\n");
fi;
#E doL35.g . . . . . . . . . . . . . . . . . . . . . . . . . . . . ends here