From 1da8cabdf7885c01ac8032773109559c4aa7f3d1 Mon Sep 17 00:00:00 2001 From: Sandy Brownlee Date: Wed, 21 Sep 2022 13:35:56 +0100 Subject: [PATCH] minor fix to repeatuntil --- programs/repeatuntil.tri | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/repeatuntil.tri b/programs/repeatuntil.tri index 316493f..c2518de 100644 --- a/programs/repeatuntil.tri +++ b/programs/repeatuntil.tri @@ -10,5 +10,5 @@ begin put('a'); a := a + 1; end - until a < 5 + until a >= 5 end