/usr/lib/open-axiom/input/farray.input is in open-axiom-test 1.4.1+svn~2626-2ubuntu2.
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 | -- Input generated from FlexibleArrayXmpPage
)clear all
flexibleArray [i for i in 1..6]
f : FARRAY INT := new(6,0)
for i in 1..6 repeat f.i := i; f
physicalLength f
concat!(f,11)
physicalLength f
physicalLength!(f,15)
concat!(f,f)
insert!(22,f,1)
g := f(10..)
insert!(g,f,1)
merge!(sort! f, sort! g)
removeDuplicates! f
select!(i +-> even? i,f)
physicalLength f
shrinkable(false)$FlexibleArray(Integer)
|