Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/jordangarrison/GolangTraining
- Owner: jordangarrison
- Created: 2018-08-19T05:28:39.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-08-19T05:29:10.000Z (over 6 years ago)
- Last Synced: 2024-08-03T23:29:26.018Z (5 months ago)
- Topics: emacs, go, golang, learn-to-code, learning-by-doing, tutorial-exercises
- Language: Go
- Size: 1000 Bytes
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
Awesome Lists containing this project
- awesome-golang-repositories - GolangTraining
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.