docs: fix the century algorithm example in docs.md (#7549)
parent
72b0421f3e
commit
fdf6927585
|
@ -747,11 +747,12 @@ However, you _can_ redeclare a type.
|
||||||
|
|
||||||
```v
|
```v
|
||||||
import time
|
import time
|
||||||
|
import math
|
||||||
|
|
||||||
type MyTime = time.Time
|
type MyTime = time.Time
|
||||||
|
|
||||||
fn (mut t MyTime) century() int {
|
fn (mut t MyTime) century() int {
|
||||||
return 1 + t.year % 100
|
return int(1.0 + math.trunc(f64(t.year) * 0.009999794661191))
|
||||||
}
|
}
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
|
|
Loading…
Reference in New Issue