I have this code:
if t.kind in {tkKeyword, tkIdent}:
Now i want to do:
if t.kind not in {tkKeyword, tkIdent}:
But i get:
Error: expected: ':', but got: 'keyword not'
I've tried searching in the manual or in example nim code but when i search for "not in" it basically finds everything and nothing at the same time :D Oh right, so easy it slipped through the cracks... :D
Thanks a lot !