Skip to content

chillicoder/learning-go

 
 

Repository files navigation

Learning The Go Programming Language

A sandbox for continuous learning of the Go Programming Language for Jason Brownlee.

Go is an emerging programming language by google (mountain view) intended for use in system-level programming, like C. It is compiled, has a scripting language like feel to the syntax, and does not require memory management as it uses a garbage collector at runtime. Go does have pointers and references, but there is no pointer arithmetic when working with arrays (use slices). There are strings that are immutable, and arrays that are mutable. It has support for concurrency built into the language with goroutines and channels.

Programs

Work product created while learning go

My Programs

Tutorials

  • helloworld.go: hello world
  • echo.go: echo program
  • primes.go: example of searching for primes using channels and goroutines
  • multiplexer.go: example of implicit multiplexing using channels and goroutines
  • webserver.go: a simple webserver

Other

  • build.sh: compiles and links a go file
  • build.clean.sh: deletes all .6 and .out files

References

A collection of useful references directed toward continuous learning the Go programming language.

Seminal

  • Go Homepage official
    • Go Tutorial gentle introduction to the language
    • Effective Go summary of types and language constructs
    • Go pkg API – well, the closest thing we have to an API at this stage (beats reading src)
  • Go Nuts a go user group on google groups

Basics

Other

License

(The MIT License)

Copyright © 2009 Jason Brownlee

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the “Software”), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.

About

A project for learning the go programming language

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published