Created
January 14, 2020 02:44
-
-
Save epmallmann/993cf4134a8cfa75b776f1dee331214d to your computer and use it in GitHub Desktop.
go_is_simple
This file contains 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 | |
import "fmt" | |
func main() { | |
isThisTheRealLife := true | |
if isThisTheRealLife { | |
fmt.Println("Is this just fantasy") | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment