blob: c6fdb464a6c9311bd8918fbef773f5f18930e3bf (
plain)
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
45
|
# Untyped dir path reversability.
#
x = s/foo/bar/
print -e=$x
print -e $x
y = $x
print -e=$y
print -e $y
print
# Typed dir path reversability and expansion.
#
x = [dir_path] foo/bar/
print -I$x
print -I$x/baz
print -I $x
print [strings] -I $x
print -I $x/baz
print
y = $x # No longer typed but still not original.
print -I$y
print -I$y/baz
print -I $y
print [strings] -I $y
print -I $y/baz
print
z = [strings] "$x" # Re-typed.
print $z
print
# The root case.
#
r = [dir_path] /
print $r/foo
r += foo
print [strings] "$r"
r += bar
print [strings] "$r"
./:
|