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 "] )