%% Test for parsing numeric cells.  A numeric cell begins with a cell name
%% followed by a ':' immediately followed by a number.
%mode init
A1:0
A2:1
A3:12.5
A4:-1.2
A5=SUM(A1:A4)
%calc
%mode result
A1=0
A2=1
A3=12.5
A4=-1.2
A5=12.3
%check
