use correct range

pull/13570/head
Subhomoy Haldar 2022-02-22 22:57:35 +05:30
parent deb35b0fc1
commit 93f95eb522
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
import rand
const (
my_random_letter_const = byte(64) + (rand.byte() % 26)
my_random_letter_const = byte(65) + (rand.byte() % 26)
)
fn test_rand_is_initialized_before_main() {