// Copyright 2025 WIT.COM Inc Licensed GPL 3.0 package env import ( "fmt" "go.wit.com/lib/cobol" ) func PrintTable() string { var data [][]string data = append(data, []string{"New Source", "ENV[name]", "Value"}) for k := range envPB.IterAll() { data = append(data, []string{k.Global, k.Var, k.Value}) } cobol.SimpleTableSizes(data, []int{20, 20, -1}) return fmt.Sprintf("ENV: total=(%d)", envPB.Len()) }