go-tour/multiple-results.go

13 lines
162 B
Go
Raw Normal View History

2020-02-05 03:44:36 +00:00
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)
}