/usr/share/axiom-20120501/input/elt.input is in axiom-test 20120501-8.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | )set break resume
)spool elt.output
)set message test on
)set message auto off
)clear all
--S 1 of 4
u : Bits := new(10,true)
--R
--R
--R (1) "1111111111"
--R Type: Bits
--E 1
--S 2 of 4
u(3..5) := false; u
--R
--R
--R (2) "1100011111"
--R Type: Bits
--E 2
)clear all
--S 3 of 4
u:Any := [1, 7.2, 3/2, x**2, "wally"]
--R
--R
--R 3 2
--R (1) [1,7.2,-,x ,"wally"]
--R 2
--R Type: List(Any)
--E 3
--S 4 of 4
u.1
--R
--R
--R (2) 1
--R Type: PositiveInteger
--E 4
)spool
)lisp (bye)
|