Hi,
I think that the problem is in the quotes ("). Please try to delete them.
For example:
//this is valid
double value =0.15;
lr_output_message( "value #%f", value);
//this is not valid and you will receive a compilation error.
double value2= "0.15";
Kind regards,