9 lines
101 B
Go
9 lines
101 B
Go
|
package main
|
||
|
|
||
|
import "fmt"
|
||
|
|
||
|
func main() {
|
||
|
r := Recipe{Name:"Bread"}
|
||
|
fmt.Println("Done: "+r.Name)
|
||
|
}
|