It's purely a readability thing. `width as Double`...
# language-proposals
r
It's purely a readability thing.
width as Double
and
rows as Int
just seem more expressive than
width.double
and
<http://rows.int|rows.int>
, though reading it now, I guess
rows.toInt()
and
width.toDouble()
are just as expressive.
4