(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| function switchgo() { | |
| version=$1 | |
| if [ -z $version ]; then | |
| echo "Usage: switchgo [version]" | |
| return | |
| fi | |
| if ! command -v "go$version" > /dev/null 2>&1; then | |
| echo "version does not exist, download with: " | |
| echo " go get golang.org/dl/go${version}" |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.