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.
17 lines
363 B
Go
17 lines
363 B
Go
4 years ago
|
// Copyright (c) 2020, The Garble Authors.
|
||
|
// See LICENSE for licensing information.
|
||
|
|
||
|
// A simple main package with some names to obfuscate.
|
||
|
// No dependencies, since each benchmark iteration will rebuild all deps.
|
||
|
|
||
|
package main
|
||
|
|
||
|
var globalVar = "global value"
|
||
|
|
||
|
func globalFunc() { println("global func body") }
|
||
|
|
||
|
func main() {
|
||
|
println(globalVar)
|
||
|
globalFunc()
|
||
|
}
|