This commit is contained in:
Ingy döt Net 2013-04-10 21:29:02 -07:00
parent 764da6cbbb
commit db842d013d
19005 changed files with 197040 additions and 7 deletions

View file

@ -0,0 +1,2 @@
> kernelopts( 'version' );
Maple 16.00, SUN SPARC SOLARIS, Mar 3 2012, Build ID 732982

View file

@ -0,0 +1 @@
> if sscanf( (StringTools:-Split(kernelopts(version))[2]), "%d.%d" )[1] < 300 then `quit`(1) end;

View file

@ -0,0 +1,3 @@
> if type( bloop, complex( extended_numeric ) ) and type( abs, mathfunc ) then print( abs( bloop ) ) end:
1/2
13

View file

@ -0,0 +1,2 @@
> abs( bloop );
| bloop |

View file

@ -0,0 +1,5 @@
> nops([anames](integer));
3
> eval(`+`(anames(integer)));
17

View file

@ -0,0 +1,6 @@
> foo := 25:
> nops([anames](integer));
4
> eval(`+`(anames(integer)));
42