What is the correct syntax? “roll” is a method returning a random UInt32. I tried replacing 1 with 1_u32, in case it was being taken as signed. The value being made into 8-bit is always in the range 1 … 10, so overflow isn’t a problem. I’m likely overlooking something obvious, due to being brainwashed in other languages that let one cast types as one pleases.
You can do .unsafe_as(UInt8) if you are cool hacker and understand consequences, or just .to_u8 (or UInt8.new(1+roll % 10)) to make a conversion, not a cast.