> I am also reticent to use Natural types, since you can not convert back and > forth with integers and most functions are written for integers in libraries.
Not true? let a: int = 1 let b: Natural = a let c: int = b echo (a, b, c) Run The problem might be that the base type of `Natural` is `int` and not compatible with other sized integer types.