blob: 136f6520fe0a901fe4117f7ffbcc095d758ccac7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
$identity()
$identity (a)
$identity (a b c)
$identity(sub/dir{x y z})
print a$identity (b)c
# Verify we can inhibit function call with quoting.
#
foo = FOO
bar = BAR
print $foo"($bar)"
print "$foo"($bar)
print "$foo""($bar)"
./:
|