-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathboot.b
44 lines (38 loc) · 942 Bytes
/
boot.b
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
environs: make context! [
version: 2,0,8
os: arch: big-endian: none
]
q: :quit yes: true no: false
eq?: :equal?
tail?: :empty?
close: :free
context: func [b block!] [make context! b]
charset: func [s char!/string!] [construct bitset! s]
error: func [s string! /no-trace] [throw make error! s]
join: func [a b] [
a: either series? a [copy a][to-text a]
append a reduce b
]
rejoin: func [b block!] [
if empty? b: reduce b [return b]
append either series? first b
[copy first b]
[to-text first b]
next b
]
replace: func [series pat rep /all] [
size: either series? pat [size? pat][1]
either all [
f: series
while [f: find f pat] [f: change/part f rep size]
][
if f: find series pat [change/part f rep size]
]
series
]
split-path: func [path] [
either end: find/last path '/'
[++ end reduce [slice path end end]]
[reduce [none path]]
]
term-dir: func [path] [terminate/dir path '/']