initial commit

This commit is contained in:
Zacharias-Brohn
2026-07-12 23:39:38 +02:00
commit c756b14e24
219 changed files with 5438 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
use std::time::{SystemTime, UNIX_EPOCH};
fn main() {
match SystemTime::now().duration_since(UNIX_EPOCH) {
Ok(n) => println!("1970-01-01 00:00:00 UTC was {} seconds ago!", n.as_secs()),
Err(_) => panic!("SystemTime before UNIX EPOCH!"),
}
}