14 lines
133 B
Go
14 lines
133 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func vals() (int, int) {
|
|
return 3, 7
|
|
}
|
|
|
|
func main() {
|
|
x, y := vals()
|
|
fmt.Println(x)
|
|
fmt.Println(y)
|
|
}
|