src/webapps/simple_webapp.go
build, run and then goto http://localhost:1514/x where x can take "english", "french" or "punjabi" as values.
example: http://localhost:1514/french
src/language_features/struct_embedding.go
embedding a struct into other
embedded types' methods will be promoted to outer type
src/fizzbuzz/fizz_buzz.go
classic simple fizzbuzz problem using a map(k, v)
src/stack/stack.go
an almost generic stack implementation using slices
src/strings/reverse_string.go
how to reverse a string in golang?