Skip to content

Instantly share code, notes, and snippets.

View greasysock's full-sized avatar
🏠
Working from home

Chris greasysock

🏠
Working from home
  • Raleigh, NC
View GitHub Profile
@greasysock
greasysock / linkedlist.go
Last active April 15, 2019 21:43
A simple linked list implentation
package linkedlist
type LinkedListValue struct {
next *LinkedListValue
value int
}
type LinkedList struct {
head *LinkedListValue
tail *LinkedListValue