Sign in
go
/
website
/
41e922072f17ab2826d9479338314c025602a3a1
/
.
/
_content
/
tour
/
basics
/
multiple-results.go
blob: 1b86fd7d0721af509eb9afdf3fe9f5c72bbd30f7 [
file
] [
log
] [
blame
]
// +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)
}