Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jordangarrison/GolangTraining

Learning Golang from Todd McCleod's Course
https://github.com/jordangarrison/GolangTraining

emacs go golang learn-to-code learning-by-doing tutorial-exercises

Last synced: about 2 months ago
JSON representation

Learning Golang from Todd McCleod's Course

Awesome Lists containing this project

README

        

#+TITLE: Golang Training
#+DATE: <2018-08-16 Wed>
#+AUTHOR: Jordan Garrison
#+EMAIL: [email protected]
#+INFOJS_OPT: view:info mouse: sdepth:1 toc:i
#+OPTIONS: email:t num:nil p:t toc:nil c:t creator:t

* Golang Training
This repo if for use in learning the go language from Todd Mcleod's Udemy course.
You can see his repo here: [[https://github.com/GoesToEleven/GolangTraining][GolangTraining]]

Alternatively you can clone it with the following command:
#+BEGIN_SRC bash
git clone https://github.com/GoesToEleven/GolangTraining.git
#+END_SRC
Or better you can download with the go get utility once you have set up your go path using:
#+BEGIN_SRC bash
go get github.com/GoesToEleven/GolangTraining
#+END_SRC
** Versions
| Version | Comment |
|---------+----------------|
| 0.1.0 | Initial Commit |
** A quick note
You can keep your go commits clean by running the =go clean= command in your folders prior to commit.
** Contents
*** 01_helloWorld
First file which contains hello world main.go file.