From 714a82886ef613ddfaecfc88660f70fa5b3fb604 Mon Sep 17 00:00:00 2001 From: Mikkel Milo Date: Sat, 20 Feb 2016 19:09:30 -0500 Subject: [PATCH] Deleted unnecessary file --- hello.go | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 hello.go diff --git a/hello.go b/hello.go deleted file mode 100644 index a4c94ae..0000000 --- a/hello.go +++ /dev/null @@ -1,17 +0,0 @@ -package main - -import( - "lib/collection" - "fmt" -) - -func main() { - var s collection.Stack - s.Push("world") - s.Push("hello, ") - for s.Size() > 0 { - fmt.Print(s.Pop()) - } - fmt.Println() - // Output: hello, world -}