Skip to content

sammi-turner/Assorted-Golang

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

100 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 go package without a go.mod file

go run *.go

To build a binary without a go.mod file

go build *.go

To create a go.mod file for a project

go mod init name-of-project

To run a project that has a go.mod file

go run

To compile a project that has a go.mod file

go build

About

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

Topics

Resources

Stars

Watchers

Forks

Contributors