aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/world/net/http/version.lux
blob: abfc20a0e1d9be9117bf721685cc6b4b50abaec2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
(.using
 [library
  [lux (.except)]]
 [// (.only Version)])

(template [<name> <version>]
  [(def: .public <name> Version <version>)]

  [v0_9 "0.9"]
  [v1_0 "1.0"]
  [v1_1 "1.1"]
  [v2_0 "2.0"]
  )