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) =