According to your error message, it seems tokens[ITEM_NAME] is Option[system.string] type and you are trying to add it to seq[string] type result variable.
You might need to read this document and learn how to get a value from an Option type. [https://nim-lang.org/docs/options.html](https://nim-lang.org/docs/options.html)
