Quick actions

cmd+k|ctrl+k

Navigation

Languages

Functions / Parameters / Essential Go

Snippet info

Language

Go

Visibility

public

Author

kkowalczyk

Created

2019-03-26T09:41:12Z

Updated

2019-03-26T09:41:12Z

package main

import (
	"fmt"
)

func SayHelloToMe(firstName, lastName string, age int) {
	fmt.Printf("Hello, %s %s!\n", firstName, lastName)
	fmt.Printf("You are %d\n", age)
}

func main() {
	SayHelloToMe("John", "Doe", 35)
}
INFO