

0 / 2 embers
0 / 3000 xp
click for more info
Complete a lesson to start your streak
click for more info
Still calibrating
click for more info
Not enough gems
Cost: 6 gems
1: Welcome to Build a Pokedex
incomplete
2: Build
incomplete
3: Tests
incomplete
4: REPL
incomplete
5: Help and Exit
incomplete
This lesson's interactive features are locked, please to keep using them
By the end of this step, you'll have a simple working program in Go!
go mod init MODULE_NAME
I recommend naming the module by its remote Git location (you should store all your projects in Git!). For example, my GitHub name is wagslane so my module name might be github.com/wagslane/pokedexcli.
go build
The executable will be named after the directory containing the main.go file, hence mine was pokedexcli. You should .gitignore the executable.
./pokedexcli
It should print "Hello, World!" to the console!
Run and submit the CLI tests from the root of the repo.