Files
the-way-to-go_ZH_CN/eBook/exercises/chapter_11/main_stack_v2.go
2015-03-03 12:25:25 -05:00

17 lines
255 B
Go
Executable File

// main_stack_v2.go
package main
import (
"./stack/collection"
"fmt"
)
func main() {
var s collection.Stack
s.Push("world")
s.Push("hello, ")
for s.Size() > 0 {
fmt.Print(s.Pop())
}
fmt.Println()
}