Paul McGuire wrote:
> On Nov 8, 3:14 am, Donn Ingle <[EMAIL PROTECTED]> wrote:
>
>
>> float = nums + dot + nums
>>
>
> Should be:
>
> float = Combine(Word(nums) + dot + Word(nums))
>
> nums is a string that defines the set of numeric digits for composing
> Word instances. nums is not an ex
On Nov 8, 3:14 am, Donn Ingle <[EMAIL PROTECTED]> wrote:
> float = nums + dot + nums
Should be:
float = Combine(Word(nums) + dot + Word(nums))
nums is a string that defines the set of numeric digits for composing
Word instances. nums is not an expression by itself.
For that matter, I see in y