1 | initial version |
One way is too concatenate the commands with a ;
in between:
$ sage -c "m=matrix(2,2,range(4));print(m^10)"
[ 44726 79647]
[159294 283667]
2 | No.2 Revision |
One way is too to concatenate the commands with a ;
in between:
$ sage -c "m=matrix(2,2,range(4));print(m^10)"
[ 44726 79647]
[159294 283667]