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