aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/tool/compiler/meta/io.lux
blob: 5791648810ac436516128075fb389365cdebf863 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(.module:
  [lux (#- Module Code)
   [data
    ["." text]]
   [world
    [file (#+ Path System)]]])

(type: #export Context Path)

(type: #export Module Text)

(type: #export Code Text)

(def: #export (sanitize system)
  (All [m] (-> (System m) Text Text))
  (text.replace-all "/" (:: system separator)))