Go Package math: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
 
Line 6: Line 6:
=Internal=
=Internal=


* [[Go Concepts - Standard Library#Packages|Standard Library]]
* [[Go_Language_Modularization#math|Standard Library]]


=Random Numbers=
=Random Numbers=

Latest revision as of 22:14, 6 September 2023

External

Internal

Random Numbers

https://gobyexample.com/random-numbers

To get a pseudo-random non-negative int between 0 (inclusive) and n (exclusive), use:

rand.Intn(n int) int