blob: eb9e70503735840351ba3a2fc103e3254854a139 [file] [log] [blame]
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)
}