Skip to content

Basic exercises implementations for exploring Go programming language

License

Notifications You must be signed in to change notification settings

pedropalau/go-exercises

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Go programming language exercises

Build Status GitHub license

This repository contains some exercises implementations and code exploration for the go language.

Resources

List of useful reads and resources about Go language and related tools.

Executing the exercises

For executing the exercises, is required to have the go compiler correctly installed on your system.

To execute an exercise you can use the command:

$ go run [filename].go

Where filename is the name of the file you want to execute.

Using golint

Golint is a linter for Go source code.

For using it, invoke golint with one or more filenames, directories, or packages named by its import path.

Golint uses the same import path syntax as the go command and therefore also supports relative import paths like ./.... Additionally the ... wildcard can be used as suffix on relative and absolute file paths to recurse into them.

$ golint [filename].go

About

Basic exercises implementations for exploring Go programming language

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published