in reply to Re^2: Unifying namespaces of @name and $name... (bare lexicals)
in thread Unifying namespaces of @name and $name to simplify dereferencing?

Well, I did not mean to suggest we do away with sigils altogether. These are just too convenient, if only for string interpolation.

To illustrate the possibilities: let's say we have the statement

my foo = [ 1, 2, 3 ];
This shadows all other symbols foo in scope. Further, any $ @ % sigils on foo are just shorthand for ${} @{} %{}. Now you can write
print @foo;
... and have it work DWIM. Or use the bare foo as reference. But the problem is, if foo refers to code you'll need explicit () to make the call. Hmm. And then, is $doh->foo() a method call or autoboxing? There are probably many caveats I can't think of. So you may be right that this feature wouldn't integrate well.

Anyhow, the more compact syntax would see more use. Isn't this all about hubrislaziness after all?

2017-04-01 Embarrassing. I think laziness but write hubris, some times. Blame perl!