' to be used in 'initialisations' block for saving expressions. For instance:
initialisations to "mydata.txt"
evaluation of i+j*x.sol as "mylabel"
end-initialisations
It is now possible to select the fields of a record that must be saved or read in an 'initialisations' block:
ta:record
i,j,k:integer
end-record
a:ta
initialisations from "mydata.txt"
a(j) ! read only field 'j'
end-initialisations
Data files and records: the [] must be used only if there are more than 1 field.