Converts the parameter to a real (floating point) number. If conversion fails, zero is returned. If you pass a string, it will be parsed as a number. If you pass a boolen, zero will be returned for FALSE, and one will be returned for TRUE.
real = toReal("123.456");
real = toReal(FALSE);
real = toReal(123);