aboutsummaryrefslogtreecommitdiff
path: root/licentia/source/program/licentia/license/time.lux
blob: 8da867dbaff316cc1d9d6f0e082afad120c8b38a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(.module:
  [library
   [lux "*"]])

(type: .public Days
  Nat)

(type: .public Months
  Nat)

(type: .public Year
  Nat)

(type: .public (Period a)
  (Record
   [#start a
    #end a]))