go-playground/da_tour/datour/multiple-results.go

14 lines
248 B
Go

package datour
import "fmt"
func swap(x, y string) (string, string) {
return y, x
}
// MultipleResults func utilizes function swap that returns multiple results
func MultipleResults() {
a, b := swap("hello!", "Go world,")
fmt.Println(a, b)
}