shiika
shiika copied to clipboard
Support int * float
Currently 2 * 2.0
raises error but it is not convenient.
Workaround is to write it as 2.0 * 2.0
or 2.to_f * 2.0
.