gitlab.com/evatix-go/core@v1.3.55/cmd/main/stackTrackerTest2.go (about)

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