Hey guys, I started my studies with NIM language just a few days ago, so Im learning yet.
I need to generate a random integer number, given a range. I was looking for
something and found this at the NIM Manual:
proc random[T](x: Slice[T]): T
proc random[T](a: openArray[T]): T
But I'm not sure how to use it, any tips?
