Example of Creating a File Object
- Last UpdatedJul 03, 2023
- 1 minute read
This example reads pairs of numbers from file data, adds them together and writes the answers to file RESULTS.
!Input = object FILE('DATA')
!Input.Open(‘READ’)
!Output = object FILE('RESULTS')
!Output.Open(‘WRITE’)
do
!Line = !Input.ReadRecord()
if (!Line.set()) then
!array = !Line.Split()
!Total = !Array[1].Real() + !Array[2].Real()
!Output.WriteRecord( !Total.String() )
else
break
endif
enddo
!Output.Close()
!Input.Close()