Newer
Older
01_hello / func / bareReturn.go
yhornisse on 27 Sep 2021 250 bytes add bare return sample
package main

import "fmt"

func hoge() (x, y int64) {
	x = 1
	y = 2
	return
}

func fuga() (x int64, y int64) {
	x = 1
	return
}


func main() {
	{
		x, y := hoge()
		fmt.Println(x, y) // 1 2
	}
	
	{
		x, y := fuga()
		fmt.Println(x, y) // 1 0
	}
}