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 -}