Home
Head's Up: I'm in the middle of upgrading my site. Most things are in place, but there are something missing and/or broken including image alt text. Please bear with me while I'm getting things fixed.

Get The Current DateTime Timezone Offset In Rust

rust
```cargo
[dependencies]
chrono = { version = "0.4.34", features = [] }
```

use chrono::offset::Local;

fn main() {
  let now = Local::now();
  println!("{}", now.offset());
}
results start