5 lines
119 B
Nim
Raw Normal View History

2024-12-02 15:45:44 +01:00
type Period* = distinct uint64
func `$`*(period: Period): string {.borrow.}
func `==`*(a, b: Period): bool {.borrow.}