Skip to content

Commit f959345

Browse files
committed
Reformat
1 parent 5e3c367 commit f959345

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

gc8jhr8_small_fuzzy_numbers/main.go

+1-9
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,8 @@ import (
66
"github.com/d4l3k/go-bfloat16"
77
)
88

9-
var floats = []float32{
10-
7.112e-37,
11-
5.031e-05,
12-
5.049e-28,
13-
3.964e-06,
14-
}
15-
169
func main() {
17-
for _, f := range floats {
10+
for _, f := range []float32{7.112e-37, 5.031e-05, 5.049e-28, 3.964e-06} {
1811
fmt.Printf("%x\n", bfloat16.FromFloat32(f))
19-
2012
}
2113
}

0 commit comments

Comments
 (0)