✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Що з наступного вірно щодо нижче згаданого коду на мові Go?
package main
import ( "fmt" "math/rand" )
func main() {
var result
int32 = rand.Int31n(20)
fmt.Println(result)
}