The TotalList function returns the total of all space and return delimited numbers contained in the specified list.
TotalList (theList)
Let ( Total = 0 ;
If (
WordCount ( theList) > 1;
Total + GetAsNumber ( ( LeftWords ( theList; 1 ) ) ) +
TotalList ( RightWords ( theList; WordCount( theList ) - 1) );
Total + GetAsNumber ( ( LeftWords ( theList; 1 ) ) )
)
)
