aboutsummaryrefslogtreecommitdiff
path: root/new-luxc/test/tests.lux
blob: 04362d4d1f7cb05d485f78f5e7b115a42bd2f9ef (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:
  [lux
   [cli (#+ program:)]
   ["." test]]
  [test
   [luxc
    [lang
     [translation
      ["_.T" primitive]
      ["_.T" structure]
      ["_.T" function]
      ["_.T" reference]
      ["_.T" case]
      ["_.T" common]
      ## ["_.T" jvm]
      ## ["_.T" js]
      ## ["_.T" lua]
      ## ["_.T" ruby]
      ## ["_.T" python]
      ## ["_.T" r]
      ## ["_.T" scheme]
      ## ["_.T" common-lisp]
      ## ["_.T" php]
      ]]]]
  )

(program: args
  (test.run))