You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
package main
import fmt "fmt"
var a int32
func main() {
//line ./main.gop:2
a = int32(97)
//line ./main.gop:3
fmt.Printf("%T\n", a)
//line ./main.gop:4
fmt.Printf("%T\n", 97)
}
The text was updated successfully, but these errors were encountered:
Go+ code
int32
int // bad type
generte Golang code
The text was updated successfully, but these errors were encountered: