[REBOL] Re: random string
From: cyphre:seznam:cz at: 10-Apr-2002 10:53
Oops! ;) this is the right code for random string of 8 chars from #"A" to #"Z":>> rejoin array/initial 8 [to-char (random 25) + 64]== "LBAUXVRH" Anyway, the technique remains the same like in my previous post... regards, Cyphre