summaryrefslogtreecommitdiff
path: root/example/main.go
blob: 47dad4fcc934ce245a67e8534868521f53238e66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//go:build go1.20
// +build go1.20

package main

import "go.wit.com/log"

// sent via -ldflags
var VERSION string
var BUILDTIME string

var sortmap map[string]string
var marshalKeys []string
var uniqueKeys []string

var pb *Fruits

func main() {
	pb = NewFruits()
	log.Info("did nothing yet", pb)
}