Skip to content

Example code, Codewars katas and a compiler for the Monkey programming language.

Notifications You must be signed in to change notification settings

sammi-turner/Assorted-Golang

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

65 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation


Assorted-Golang

Example code, Codewars katas and a compiler for the Monkey programming language.


Installation

Ben Davis has a nice video walk through on how to install Go and set up the path variable


Syntax primer

"Learn X in Y minutes" has a good introduction to Go


To run a single main.go file

go run main.go

To create a go.mod file for a project

go mod init name-of-project

To compile a project that has a go.mod file

go build

To run a project

./name-of-project

To compile and run a project

go build && ./name-of-project

Video course

The FreeCodeCamp YouTube channel has a beginners course to get you started.


About

Example code, Codewars katas and a compiler for the Monkey programming language.

Topics

Resources

Stars

Watchers

Forks