Skip to content

Instantly share code, notes, and snippets.

View TonPC64's full-sized avatar
:shipit:
Gopher

Chanwit Piromplad TonPC64

:shipit:
Gopher
View GitHub Profile
@TonPC64
TonPC64 / stack.go
Created July 10, 2018 12:47
โจทย์ สร้าง stack ให้ push pop ได้
package main
type stack []int
func main() {
var value stack
value.push(5)
value.pop()
}