ucal-core 0.2.0

Universe Calendar core: absolute time in Planck ticks, base-5 tier grid, profile UC-1
Documentation
1
2
3
4
5
6
7
8
9
//! Rule Q.3: `SignedWindow` has no arithmetic operators at all.

use ucal_core::{Profile, UC1};

fn main() {
    let a = UC1::big_bang_claim();
    let b = UC1::big_bang_claim();
    let _ = a + b;
}