float does not exist in Boo??

I tried to use float. but error occurs.
So, I used double not float.
Is it correct choice?

def CalculateJumpVerticalSpeed (targetJumpHeight as float):

It’s bad:(

def CalculateJumpVerticalSpeed (targetJumpHeight as double):

It’s okay:smile:

boo uses the real name of the data type and thats “single”, float is just an alias to it.

Thanks dreamora