I think that I missed this in the docs. It seems that you can chain set variables
<cfset a=1> <cfset c=b=a+1> This will give you a=1, b=2, c=2. On a related note, the following will fail <cfset a=1> <cfset c=b+1=a+1> The chain works as long as there is no operation except on the right-most item in the chain. This is all expected behavior in some other languages but I've never seen it in CF. Anyone know when it was added? Please make me look like a fool for missing it. :) -- Michael Dinowitz ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:331225 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

