Link Search Menu Expand Document

7. Getting Started Coding

Follow these steps to get started with the coding portion of Project 2.

  1. Install Golang v1.17 or newer.
  2. Complete the online Golang Tutorial.
    • The tutorial can take quite a bit of time to complete, so plan accordingly.
    • The tutorial is a helpful tool that you may end up referencing frequently, especially while learning Go for the first time.
  3. Accept the Project 2 GitHub Classroom Invite Link for Summer 2022.
    • At this step, you may receive an email asking you to join the cs161-students organization.
  4. Enter a team name. If you’re working with a partner, only one partner should create a team - the other partner should join the team through the list of teams.
  5. In the client_test directory of the checked out repository, run go test.
    • Go will automatically retrieve the dependencies defined in go.mod and run the tests defined in client_test.go.
    • It is expected that some tests will fail because you have not yet implemented all of the required functions.

Using GitHub

Best practice when using git is to commit small, logical units of work regularly. This makes it easier to revert related changes if something goes wrong. Additionally, push your changes from your local checkout to your GitHub repository frequently to back up your work in case something happens to your local machine, and to share your changes with your partner (if you have one).


Table of contents