blob: 61f4a19c971aeec72ce550af065ee53557ac5ff7 [file] [log] [blame]
//go:build OMIT
package main
import "fmt"
func swap(x, y string) (string, string) {
return y, x
}
func main() {
a, b := swap("hello", "world")
fmt.Println(a, b)
}