You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
submain()
a= { bolFalse: false, bolTrue: true, intFalse: 0, intTrue: 1 }
printaprint"Positive Test Bool"ifa.bolFalsethenprint"True"elseprint"False"ifa.bolTruethenprint"True"elseprint"False"print"Positive Test Int"ifa.intFalsethenprint"True"elseprint"False"ifa.intTruethenprint"True"elseprint"False"print"Negative Test Bool"ifnota.bolFalsethenprint"True"elseprint"False"ifnota.bolTruethenprint"True"elseprint"False"print"Negative Test Int"ifnota.intFalsethenprint"True"elseprint"False"ifnota.intTruethenprint"True"elseprint"False"end sub
The text was updated successfully, but these errors were encountered:
lvcabral
changed the title
Make if behavior when using integer variables consistent with Roku
Make if behavior when using numeric variables consistent with Roku
Nov 30, 2023
The actual ROKU output is:
And the current BRS output is:
The text was updated successfully, but these errors were encountered: