()
| 3 | import "fmt" |
| 4 | |
| 5 | func main() { |
| 6 | obj := Constructor() |
| 7 | obj.Push(1) |
| 8 | obj.Push(2) |
| 9 | param_2 := obj.Pop() |
| 10 | param_3 := obj.Peek() |
| 11 | param_4 := obj.Empty() |
| 12 | fmt.Println(param_2) |
| 13 | fmt.Println(param_3) |
| 14 | fmt.Println(param_4) |
| 15 | } |
| 16 | |
| 17 | type MyQueue struct { |
| 18 | stack []int |
nothing calls this directly
no test coverage detected