``` nimrod type TSemVer* = tuple major, minor, patch: natural special: string const VERSION: TSemVer = (0, 1, 0, "") ``` This causes the error `type mismatch: got (tuple[int, int, int, string]) but expected 'TSemVer'` If you change natural to int, it compiles fine. What is the way to use natural numbers?