Numbers In Golang

[Solved] Numbers In Golang | Perl - Code Explorer | yomemimo.com
Question : Numbers in golang

Answered by : harendra

num := 3 // int
num := 3. // float64
num := 3 + 4i // complex128
num := byte('a') // byte (alias for uint8)

Source : https://devhints.io/go | Last Update : Wed, 05 Jan 22

Answers related to numbers in golang

Code Explorer Popular Question For Perl