aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/target.lux
blob: cee1e30846e0f9f3df891bcf309c9981ee8b3d11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
(.using
 [library
  [lux (.except)]])

(type: .public Target
  Text)

(with_template [<name> <value>]
  [(def .public <name>
     Target
     <value>)]

  ... TODO: Delete ASAP.
  [old "{old}"]
  ... Available.
  [js          "JavaScript"]
  [jvm         "JVM"]
  [lua         "Lua"]
  [python      "Python"]
  [ruby        "Ruby"]
  ... Not available yet.
  [common_lisp "Common Lisp"]
  [php         "PHP"]
  [r           "R"]
  [scheme      "Scheme"]
  )