Skip to content

Instantly share code, notes, and snippets.

@Heavyblade
Last active June 11, 2019 20:57
Show Gist options
  • Save Heavyblade/c7362d1c638c75abccb1134ceb6cd499 to your computer and use it in GitHub Desktop.
Save Heavyblade/c7362d1c638c75abccb1134ceb6cd499 to your computer and use it in GitHub Desktop.
hello.go
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