Intellisense in Go doesn't trigger when no spaces
Posted: Thu May 31, 2012 8:36 pm
Code snippet:
package main
import (
"fmt"
"math"
)
func main() {
x := 2.0*math.Abs(2.0)
fmt.Printf("%v\n", x)
}
In the code above, intellisense doesn't trigger after math. However, the code compiles and runs just fine.
package main
import (
"fmt"
"math"
)
func main() {
x := 2.0*math.Abs(2.0)
fmt.Printf("%v\n", x)
}
In the code above, intellisense doesn't trigger after math. However, the code compiles and runs just fine.