unable to run the example on my local machine via go run main.go #528
Answered
by
muesli
rockey5520
asked this question in
Q&A
-
Hello, I am trying an example at this below location and wonder any help if you can help me understand why I couldn't run the program using https://github.com/charmbracelet/bubbletea/tree/master/examples/list-fancy |
Beta Was this translation helpful? Give feedback.
Answered by
muesli
Oct 11, 2022
Replies: 1 comment
-
Try: go run . or go run *.go |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
bashbunni
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
list-fancy
consists of multiple source files (ending in.go
) and you're trying to run only a single one of them.Try:
go run .
or
go run *.go