Go compiler; go run commnad

Hi @Oluwatobi_Giwa,

Try go run cmd/web/main.go cmd/web/routes.go cmd/web/handler.go (or simply go cmd/web/*.go if it is ok to include all .go files in /cmd/web).

go run does not actively search for files; it only uses the files it receives as arguments.

1 Like