15 lines
176 B
Go
15 lines
176 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
)
|
|
|
|
func Greet(writer io.Writer, name string) {
|
|
fmt.Fprintf(writer, "Hello, %s", name)
|
|
}
|
|
|
|
//func main() {
|
|
// Greet(os.Stdout, "Elodie")
|
|
//}
|