From 3f405f9ddb2d9db1e9ffbead0fdd9b4248d52c5c Mon Sep 17 00:00:00 2001 From: Mete Karasakal <32202283+karasakalmt@users.noreply.github.com> Date: Fri, 22 Sep 2023 07:46:41 +0300 Subject: [PATCH] bug/loops2.cairo semicolumn added (#146) There is a syntatic error in line 16 lacks of semicolumn so this is out of context problem must be fixed --- exercises/loops/loops2.cairo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/loops/loops2.cairo b/exercises/loops/loops2.cairo index b2f1bdc82..5a4ba9435 100644 --- a/exercises/loops/loops2.cairo +++ b/exercises/loops/loops2.cairo @@ -13,7 +13,7 @@ fn test_loop() { //TODO return a value from the loop } counter += 1; - } + }; assert(result == 5, 'result should be 5'); }