Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 802 Bytes

File metadata and controls

36 lines (26 loc) · 802 Bytes

Learning Go Exercises

This repository contains solutions and exercises from various Go programming resources.

Directory Structure

  • lg_modules/: Exercises from "Learning Go" by Jon Bodner.

    • ch1/: Chapter 1 exercises.
    • ch2/: Chapter 2 exercises.
    • ...
  • tour_of_go/: Exercises completed from the official Go Tour.

    • ...
  • snippetbox/: Implementation of the snippetbox-App from the "Let's Go" book by Alex Edwards

    • ...

Getting Started

To get started with the exercises:

  1. Clone the repository:

    git clone https://github.com/4echow/go.git
    cd go
  2. Navigate to desired exercise directory:

    cd lg_modules/ch1 # For ch1 exercises
  3. Run the Go exercise:

    go run hello.go