Also found out that a simple addition operation creates a float:
<cfset r["z"] = 1 + 2> will output 3.0
Workaround:
<cfset r.x = javaCast("int", Val("1"))>
<cfset r.y = javaCast("int", ceiling(100/10))>
Also found out that a simple addition operation creates a float:
<cfset r["z"] = 1 + 2> will output 3.0
Workaround:
<cfset r.x = javaCast("int", Val("1"))>
<cfset r.y = javaCast("int", ceiling(100/10))>