Skip to content

Instantly share code, notes, and snippets.

@xvbnm48
Created March 5, 2022 15:48
Show Gist options
  • Save xvbnm48/4af1616897b5017ef179fd217d02dd97 to your computer and use it in GitHub Desktop.
Save xvbnm48/4af1616897b5017ef179fd217d02dd97 to your computer and use it in GitHub Desktop.
function in golang
package main
import "fmt"
func main(){
printMyResult("sakura")
}
func printMyResult(sentence string) {
fmt.Println(sentence)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment