From d2d3dfa277e7d2a22ebbaf9b47316363035ed500 Mon Sep 17 00:00:00 2001 From: lording Date: Thu, 22 Jun 2023 09:41:41 +0000 Subject: var to const when posssible --- exercises/060_floats.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'exercises/060_floats.zig') diff --git a/exercises/060_floats.zig b/exercises/060_floats.zig index 1320171..69b3946 100644 --- a/exercises/060_floats.zig +++ b/exercises/060_floats.zig @@ -43,7 +43,7 @@ pub fn main() void { // // We'll convert this weight from tons to kilograms at a // conversion of 907.18kg to the ton. - var shuttle_weight: f16 = 907.18 * 2200; + const shuttle_weight: f16 = 907.18 * 2200; // By default, float values are formatted in scientific // notation. Try experimenting with '{d}' and '{d:.3}' to see -- cgit v1.2.3