gitlab.com/evatix-go/core@v1.3.55/cmd/main/stackTrackerTest.go (about) 1 package main 2 3 import ( 4 "fmt" 5 6 "gitlab.com/evatix-go/core/codestack" 7 ) 8 9 func stackTrackerTest() { 10 stackTrackerTest2() 11 one := codestack.New(1) 12 two := codestack.New(2) 13 three := codestack.New(3) 14 15 fmt.Println(one.String()) 16 fmt.Println(two.String()) 17 fmt.Println(three.String()) 18 }