Respostas:
Isso é chamado de conversão de tipo :
i := 23
var i64 int64
i64 = int64(i)
Isso provavelmente é óbvio, mas o mais simples:
i64 := int64(23)
i := 23
i64 := int64(i)
fmt.Printf("%T %T", i, i64) // to print the data types of i and i64
LLcomo postfix como c / c ++?