Style correction

This commit is contained in:
Rnhmjoj 2014-03-02 15:31:27 +01:00
parent af92f694d9
commit 9447daed1d

View File

@ -18,11 +18,11 @@ func main(){
Type(true), Type(true),
Open("test.txt", "a+"), Open("test.txt", "a+"),
Any([]interface{}{0, 1, []int{}, ""}), Any([]interface{}{0, 1, []int{}, ""}),
All([]interface{}{true,"",1}), All([]interface{}{true, "", 1}),
Min([]float64{3.14159,23.14069,2.71828}), Min([]float64{3.14159, 23.14069, 2.71828}),
Max(-3,24,1,-23,31), Max(-3,24,1,-23,31),
Join(", ", []interface{}{2,-2.33,true,"hi",}), Join(", ", []interface{}{2, -2.33, true, "hi"}),
//Input("Say hi! "), Input("Say hi! "),
} }
fmt.Println(Join("\n",test)) fmt.Println(Join("\n",test))
} }