recipe-book/main.go
2017-11-15 13:11:34 -06:00

9 lines
101 B
Go

package main
import "fmt"
func main() {
r := Recipe{Name:"Bread"}
fmt.Println("Done: "+r.Name)
}