diff --git a/README.md b/README.md index 47e65aa2..167de064 100644 --- a/README.md +++ b/README.md @@ -52,6 +52,9 @@ fn main() { let velocity/*: Velocity*/ = length / time; let _acceleration = calc_acceleration(velocity, time); //let error = length + time; // error[E0308]: mismatched types + + // Get a quantity value in a specific unit + let time_in_nano_seconds = time.get::(); } fn calc_acceleration(velocity: Velocity, time: Time) -> Acceleration {