From 2fb2dd84615226a5737bb956168960adcbb4d804 Mon Sep 17 00:00:00 2001 From: ale8k Date: Thu, 9 Dec 2021 21:30:07 +0000 Subject: [PATCH] README Update & Overview --- README.md | 2 ++ golang_datastructures_and_algorithms.go | 7 +++++++ 2 files changed, 9 insertions(+) create mode 100644 golang_datastructures_and_algorithms.go diff --git a/README.md b/README.md index 8b941fa..cfba5eb 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,6 @@ # Datastructures & Utility functions for GoLang +[![Go Reference](https://pkg.go.dev/badge/github.com/ale8k/golang_datastructures_and_algorithms.svg)](https://pkg.go.dev/github.com/ale8k/golang_datastructures_and_algorithms) + A basic GoLang module providing some datastructure implementations and utility functions ## Resources diff --git a/golang_datastructures_and_algorithms.go b/golang_datastructures_and_algorithms.go new file mode 100644 index 0000000..f56e9d9 --- /dev/null +++ b/golang_datastructures_and_algorithms.go @@ -0,0 +1,7 @@ +/* +All structures and algorithms are in subdirectories explicitly named. + +Note: I ultimately wanted to understand how go handles it's documentation processing on pkg.go.dev. +And how it handles versioning in comparison to other tools like maven, npm, pip etc. +*/ +package golangdatastructuresandalgorithms