use chrono::{Local, Datelike};
fn main() {
// Get today's date
let today = Local::now().date_naive();
// Create a vector to store the days
let mut days = Vec::new();
// Populate the vector with the last 30 days
for i in 0..30 {
let past_date = today - chrono::Duration::days(i);
days.push(past_date.day());
}
for day in &days {
println!("{}", day);
}
}
/*
run:
11
10
9
8
7
6
5
4
3
2
1
31
30
29
28
27
26
25
24
23
22
21
20
19
18
17
16
15
14
13
*/