'CLEAR'
Say "Enter year to calculate Easter for..."
Pull year
SAY '>'YEAR'<'
Say "Enter year to calculate Easter for..."
Pull year
SAY '>'YEAR'<'
I get this...
Enter year to calculate Easter for...
2014
> 2014<
2014
> 2014<
whereas I should get this...
>2014<
Adding loads of periods after the 3 already there I get...
Enter year to calculate Easter for...............................
2014
> 2014<
2014
> 2014<
so it looks as though the module reading my input is starting from the last character on the previous line (SAY), give or take a control character or 2, to the end of my actual input. Is this an "enhancement" or a fault in local installation. for those interested: after 'for...' there are 42 spaces/control chars and there are 41 spaces before '2014<'.
The bodge to get it working is to Strip the variable but that should not be necessary and was not at previous sites.
Thoughts?