Go Package math: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 6: | Line 6: | ||
=Internal= | =Internal= | ||
* [[ | * [[Go_Language_Modularization#math|Standard Library]] | ||
=Random Numbers= | =Random Numbers= |
Latest revision as of 22:14, 6 September 2023
External
Internal
Random Numbers
To get a pseudo-random non-negative int between 0 (inclusive) and n (exclusive), use:
rand.Intn(n int) int