Small Golang projects i make to explore this language.
Interested in the code? Wanna run it locally?
Prerequisites:
- Go (v1.20 or higher) installed on your machine.
-
Clone the repo:
git clone https://github.com/yurirodnov/go-apps.git
or via SSH
git clone git@github.com:yurirodnov/go-apps.git
-
Go to a specific directory:
cd 001_health_checker (or any another folder) -
Compile from source:
go build .\health_checker.go -
Run compiled program:
Windows:
.\health_checker.exeLinux / macOS:
./health_checker
Each app folder is a standalone Go project:
/go-apps
├── 001_health_checker/
├── 002_guess_number/
├── 003_binary_decimal/
├── and others...