/usr/share/axiom-20120501/input/scope.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 | )set break resume
)spool scope.output
)set message test on
)set message auto off
)clear all
--S 1 of 3
showbug1():Void ==
for i in 1..1 repeat
z:="I'm OK"
print(z)
showbug2()
print(z)
--R
--R Function declaration showbug1 : () -> Void has been added to
--R workspace.
--R Type: Void
--E 1
--S 2 of 3
showbug2():Void ==
for i in 1..1 repeat
z:="I'm nasty"
--R
--R Function declaration showbug2 : () -> Void has been added to
--R workspace.
--R Type: Void
--E 2
-- used to print:
-- I'm OK
-- I'm nasty
--S 3 of 3
showbug1()
--R
--R Compiling function showbug2 with type () -> Void
--R Compiling function showbug1 with type () -> Void
--R "I'm OK"
--R "I'm OK"
--R Type: Void
--E 3
)spool
)lisp (bye)
|