Roku Developer Program

Join our online forum to talk to Roku developers and fellow channel creators. Ask questions, share tips with the community, and find helpful resources.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
EnTerr
Roku Guru

Double chopped to Float in lists / hash tables?

This is strange but seems that putting Double in array or dictionary circumcises it to Float, is that for real?
BrightScript Debugger> d# = 1.23# : ? d#, type(d#)
1.23 Double
BrightScript Debugger> a = [d#][0] : ? a, type(a)
1.23 roFloat
BrightScript Debugger> h = {h: d#}.h : ? h, type(h)
1.23 roFloat
0 Kudos