Post History
Scala, 15 bytes '#'.toFloat/'F' Try it in Scastie! Characters in Scala kinda get casted to integers. This is usually annoying, but it's useful when golfing. # is 35 and F is 70, and the .toFlo...
Answer
#1: Initial revision
# Scala, 15 bytes ```scala '#'.toFloat/'F' ``` [Try it in Scastie!](https://scastie.scala-lang.org/fdR85nXLTEulNAlxBSd4oQ) Characters in Scala kinda get casted to integers. This is usually annoying, but it's useful when golfing. `#` is 35 and `F` is 70, and the `.toFloat` prevents it from doing integer division and truncating to 0.