aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/program/licentia/license/time.lux
blob: 22f28f607f5b953e09b3af32cbcf2e5b639c571b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(.module:
  [lux #*])

(type: #export Days
  Nat)

(type: #export Months
  Nat)

(type: #export Year
  Nat)

(type: #export (Period a)
  {#start a
   #end a})