Last active
June 11, 2019 20:57
-
-
Save Heavyblade/c7362d1c638c75abccb1134ceb6cd499 to your computer and use it in GitHub Desktop.
hello.go
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 | |
import "fmt" | |
func main() { | |
fmt.Println(sayHello("world")) | |
} | |
func sayHello(message string) string { | |
return "hello " + message | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment