From db7087c277047bf94608d976f84d2e54a77f9381 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=98yvind?= Date: Sun, 27 Feb 2022 19:08:44 +0100 Subject: [PATCH] Added some numbers to differentiate between the results --- exercises/03/vslc/vsl_programs/ps3-simplify/constants.vsl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/exercises/03/vslc/vsl_programs/ps3-simplify/constants.vsl b/exercises/03/vslc/vsl_programs/ps3-simplify/constants.vsl index 04fbf4e..ccd305e 100644 --- a/exercises/03/vslc/vsl_programs/ps3-simplify/constants.vsl +++ b/exercises/03/vslc/vsl_programs/ps3-simplify/constants.vsl @@ -1,8 +1,8 @@ func main() begin - var a - a := 1 + 2 + 4 + 5 + 6 + 7 + 8 + 9 - b := (10 + 10 * 4) * (2 + 2 * (1 + 1)) / 10 + 2 * 5 + 6 / 3 + var a, b, c + a := 1 + 2 + 4 + 5 + 6 + 7 + 8 + 9 - 1 + b := (10 + 10 * 5) * (2 + 2 * (1 + 1)) / 10 + 2 * 5 + 6 / 3 if a = b then print "The answer is", b