Files
moxa/_test/run0.go
Ludovic Fernandez e78753ffd8 test: add consistency tests. (#46)
* test: add consistency tests.

* skip: cli1 due to bug.

* refactor: rename test.

* refactor: map and for.
2019-01-25 16:41:41 +01:00

13 lines
118 B
Go

package main
import "fmt"
func f() (int, int) { return 2, 3 }
func main() {
fmt.Println(f())
}
// Output:
// 2 3