* test: add consistency tests. * skip: cli1 due to bug. * refactor: rename test. * refactor: map and for.
13 lines
118 B
Go
13 lines
118 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func f() (int, int) { return 2, 3 }
|
|
|
|
func main() {
|
|
fmt.Println(f())
|
|
}
|
|
|
|
// Output:
|
|
// 2 3
|