You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
garble/testdata/bench/main.go

16 lines
255 B
Go

// Copyright (c) 2020, The Garble Authors.
// See LICENSE for licensing information.
package main
import "fmt"
var globalVar = "global value"
func globalFunc() { fmt.Println("global func body") }
func main() {
fmt.Println(globalVar)
globalFunc()
}