aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/program/aedifex/runtime.lux
blob: 6abfc5a628bfa8b2fc6c6e0cfa3b2ec01aecb5ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(.module:
  [lux #*
   [data
    [text
     ["%" format (#+ format)]]]
   [world
    [file (#+ Path)]
    [shell (#+ Command)]]])

(template [<name> <command>]
  [(def: #export <name>
     (-> Path Command)
     (|>> (format <command>)))]

  [java "java -jar "]
  [node "node --stack_size=8192 "]
  )