gitlab.com/ethan.reesor/vscode-notebooks/yaegi@v0.0.0-20220417214422-5c573557938e/_test/ret5.go (about) 1 package main 2 3 func r2() (int, int) { return 1, 2 } 4 5 var a, b int = r2() 6 7 func main() { println(a, b) } 8 9 // Output: 10 // 1 2