you aren’t allowed to use mut with constants. Constants aren’t just immutable by default—they’re always immutable. You declare constants using the const keyword instead of the let keyword
const THREE_HOURS_IN_SECONDS: u32 = 60 * 60 * 3;
and the type of the value must be annotated.