about summary refs log tree commit diff
path: root/tools/gotest/main.go
blob: 99218c077617a6fe271df6d9d57e3827cad8adc9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// This program just exists to import some libraries and demonstrate
// that the build works, it doesn't do anything useful.
package main

import (
	"fmt"
	"somelib"
	"someproto"
)

func main() {
	p := someproto.Person{
		Name: somelib.Name(),
	}
	fmt.Println(somelib.Greet(fmt.Sprintf("%v", p)))
}