/usr/share/axiom-20140801/input/macbug.input is in axiom-test 20140801-11.
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 45 46 47 | )set break resume
)spool macbug.output
)set message test on
)set message auto off
)clear all
--S 1 of 5
macro ff(x) == x**2 + 1
--R
--R Type: Void
--E 1
--S 2 of 5
ff z
--R
--R
--R 2
--R (2) z + 1
--R Type: Polynomial(Integer)
--E 2
--S 3 of 5
macro gg(x) == ff(2*x - 2/3)
--R
--R Type: Void
--E 3
--S 4 of 5
gg(1/w)
--R
--R
--R 2
--R 13w - 24w + 36
--R (4) ---------------
--R 2
--R 9w
--R Type: Fraction(Polynomial(Integer))
--E 4
--S 5 of 5
macro ff(x) == gg(-x)
--R
--R Type: Void
--E 5
)spool
)lisp (bye)
|