Deleted unnecessary file

This commit is contained in:
Mikkel Milo 2016-02-20 19:09:30 -05:00
parent 78cf24be0c
commit 714a82886e
1 changed files with 0 additions and 17 deletions

View File

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