RTS
- New
time.nowUnixString()function - Returns the current Unix timestamp as a string:
let headers = { "X-Timestamp": time.nowUnixString() }
- Duplicate parameter detection - Functions with repeated parameter names like
fn f(a, a)are now caught at parse time instead of silently shadowing. - Safer list indexing - Accessing a list with a fractional number, NaN, or Infinity now returns a clear error instead of silently truncating or overflowing.