Skip to content

Instantly share code, notes, and snippets.

@jjuliano
Last active December 16, 2019 11:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jjuliano/d33d40ca88475f371350c9f460246766 to your computer and use it in GitHub Desktop.
Save jjuliano/d33d40ca88475f371350c9f460246766 to your computer and use it in GitHub Desktop.
package main
import (
"fmt"
"local/coffee"
)
func main() {
menu()
}
func menu() {
for _, val := range coffee.Types() {
fmt.Println(val)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment