Skip to content

Instantly share code, notes, and snippets.

@parvezmrobin
Created October 11, 2019 16:53
Show Gist options
  • Save parvezmrobin/1c517d7b07b3b8872162096cd50354a3 to your computer and use it in GitHub Desktop.
Save parvezmrobin/1c517d7b07b3b8872162096cd50354a3 to your computer and use it in GitHub Desktop.
package main
func main() {
var i int
var f float64
var b bool
var s string
println(i, ", ", f, ", ", b, ", ", s, ". ") // 0 , +0.000000e+000 , false , .
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment