vq / vlib / v / fmt / tests / float_literals_expected.vv
4 lines · 4 sloc · 36 bytes
Raw
1fn main() {
2 a := 1.0
3 println(a)
4}
5