1
0
mirror of https://github.com/charlienet/go-mixed.git synced 2025-07-18 00:22:41 +08:00
Files
go-mixed/expr/expr_test.go
2022-03-29 10:39:39 +08:00

10 lines
109 B
Go

package expr
import "testing"
func TestIf(t *testing.T) {
v1 := 10
v2 := 4
t.Log(If(v1 > v2, v1, v2))
}