Skip to content

Instantly share code, notes, and snippets.

View Crepu's full-sized avatar
🇵🇸
stop the genocide!

Daniel Méndez Crepu

🇵🇸
stop the genocide!
View GitHub Profile
@Crepu
Crepu / stack.go
Last active August 29, 2015 14:28 — forked from bemasher/stack.go
A simple LIFO stack backed by a linked list implemented with golang.
package main
import (
"fmt"
)
type Stack struct {
top *Element
size int
}