Created
October 11, 2019 16:53
-
-
Save parvezmrobin/1c517d7b07b3b8872162096cd50354a3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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