this is ok in anko,but it should be not ok ``` {script: `1 == 1.1`, runOutput: true}, // convert 1.1 to 1 , so return true {script: `1.1 == 1`, runOutput: false}, // convert 1 to 1.0 , so return false(1.1 != 1.0) ```
this is ok in anko,but it should be not ok