blob: 2a9072c39ed78718611bce8f5e5d897d6aae9948 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
(.using
[library
[lux "*"
[control
[concurrency
["[0]" async {"+" Async}]]]
[tool
[compiler
["[0]" version]
["[0]" language "_"
["[1]/[0]" lux "_"
["[1]" version]]]]]
[world
["[0]" console {"+" Console}]]]]
[///
[command {"+" Command}]])
(def: .public (do! console profile)
(-> (Console Async) (Command Any))
(console.write_line (version.format language/lux.version)
console))
|