go-crosscompile/pkg/mypkg/symbol_linux.go

8 lines
101 B
Go
Raw Permalink Normal View History

2023-08-30 21:14:10 +03:00
// go:build linux
package mypkg
func symbol(a, b string) string {
return a + "+" + b + "=linux"
}