Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
| Download
GAP 4.8.9 installation with standard packages -- copy to your CoCalc project to get it
Project: cocalc-sagemath-dev-slelievre
Views: 418346############################################################################# ## #W varnames.tst GAP Tests Alexander Konovalov ## ## ## Exclude from testinstall.g: too sensitive to the context ## gap> START_TEST("varnames.tst"); gap> Filtered( NamesSystemGVars(), x -> not x in ALL_KEYWORDS() and > ( Length(x)=1 or (IsLowerAlphaChar(x[1]) and Length(x) < 12) ) ); [ "*", "+", "-", ".", "/", "<", "=", "E", "X", "Z", "^", "fail", "infinity", "last", "last2", "last3", "time" ] gap> # Filtered(NamesSystemGVars(),name->IsSubset(LETTERS,name));; gap> E; <Operation "E"> gap> X; <Operation "Indeterminate"> gap> Z; function( q ) ... end gap> Length; <Attribute "Length"> gap> STOP_TEST( "varnames.tst", 510000); ############################################################################# ## #E varnames.tst . . . . . . . . . . . . . . . . . . . . . . . . . ends here