$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)"

./: