aboutsummaryrefslogtreecommitdiff
path: root/old-tests/variable/dir-path/buildfile
blob: 5c99f074a230d038dbd45af79fe2c4cee08141a8 (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

./: