I see that the following code
func main() { println(100 % 1e2) }
is rejected by the compiler with "invalid operation: operator % not defined on untyped float"
but the following
func main() { i := 100; println(i % 1e2) }
is happily accepted. Should I open an issue on this ? What should the normal behaviour be ?
Thanks!