Is sway case-sensitive?
const TIME = 123;
const time = 456;
pub fn process_input(bytes: Bytes, config: Config) -> (Vec<u256>, u64) {
let timestamp = time
}
Is sway case-sensitive?
const TIME = 123;
const time = 456;
pub fn process_input(bytes: Bytes, config: Config) -> (Vec<u256>, u64) {
let timestamp = time
}
yeah, it is, timestamp will be assigned with the value 456. which is the value assigned to time