[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: It would be nice if I could do: "200502" <= a <="200601" instead of "200502" <= a and a <="200601"
- From: Vineet Jain <vinjvinj@...>
- Date: Sun, 21 May 2006 12:11:42 -0400
Am in the process of embedding python in Lua:
I cannot do the following in Lua: "200502" <= a <="200601"
I get the following error: cannot concatenate boolean to string. So I
have to type the above as:
"200502" <= a and a <="200601"
VJ