Hacker News new | ask | show | jobs
by KenoFischer 2851 days ago
> * Personal pet peeve: no infix operator for integer division.

Sure there is

    julia> 10 รท 3
    3
type as

``` 10 \div<tab> 3 ```

in any decent julia-capable environment (REPL, editors, notebooks, etc)

1 comments

Oh wow. I see it was just missing from the docs until May, which was why I hadn't seen it.