blob: 0821593ea9f654062aee8d792daa1d3c5176618e (
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
27
28
|
(.module:
[library
[lux #*]])
(type: .public Target
{#.doc (example "The name/ID of a platform targetted by a Lux compiler."
"This information can be used to generate code targetting specific platforms, and to make programs cross-platform.")}
Text)
(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"]
)
|