From 948b335cb55202bf56f0b35bbb98f4900166cc24 Mon Sep 17 00:00:00 2001 From: Anthony Debucquoy Date: Thu, 20 Mar 2025 17:34:27 +0100 Subject: [PATCH] =?UTF-8?q?Impl=C3=A9menting=20while=20loop?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- spf.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/spf.py b/spf.py index c8bd74d..82cfd15 100755 --- a/spf.py +++ b/spf.py @@ -15,10 +15,8 @@ class SPFInterpreter(lark.visitors.Interpreter): self.variables = Variables(trace) def while_loop(self, el): - print("TODO: while") - cond = el.children[0] - instr = el.children[1:] - print(cond.pretty()) + while self.visit_children(el.children[0])[0]: + [self.visit_children(i) for i in el.children[1:]] def for_loop(self, el): print("TODO: for")