From 1149f8efd1eb6edcc609dfc753f1df626baaeffb Mon Sep 17 00:00:00 2001 From: Rupus Reinefjord Date: Mon, 28 Dec 2020 13:25:05 +0100 Subject: [PATCH] nim: use discard instead of continue in case else --- nim/bf.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nim/bf.nim b/nim/bf.nim index b41e3f1..5aa9edc 100644 --- a/nim/bf.nim +++ b/nim/bf.nim @@ -55,7 +55,7 @@ proc tokenize(data: string): seq[Token] = of ',': tokens.add(Read) of '[': tokens.add(LoopStart) of ']': tokens.add(LoopEnd) - else: continue + else: discard return tokens proc parse(tokens: seq[Token], index: int): (seq[Command], int) =