Thanks. I do need to read the manual. However, nothing I read there leads me to
understand that there is a .int procedure that can be applied to an int64.
Everything I have seen about converting to an int is a floating point number.
I come from Smalltalk and Python and am used to an environment I can explore.
In Smalltalk everything is available all the time. Discovery is relatively easy.
How do I find the standard procedures available to operate on any type? In this
case int64?
Where do I find
proc toInt(i: int64): int =
... convert int64 to int
...
# or
proc int(i: int64): int =
...
Run
I would love to be able to discovery the answer to the question I posted on my
own and reduce the frequency in which myself or someone else asks a question
whose answer is discoverable.
I hope that makes sense.
Thanks again for the help and replies.