Tagged Questions
The sigils tag has no wiki summary.
21
votes
5answers
479 views
What is the difference between `$this`, `@that`, and `%those` in Perl?
What is the difference between $this, @that, and %those in Perl?
9
votes
9answers
1k views
Why do you need $ when accessing array and hash elements in Perl?
Since arrays and hashes can only contain scalars in Perl, why do you have to use the $ to tell the interpreter that the value is a scalar when accessing array or hash elements? In other words, ...
3
votes
2answers
1k views
Dealing with WCF in iPhone/iPad project
I'm trying to make my Monotouch app work with WCF service. Everything works fine but every now and then (10 - 30 service calls), app crashes with SIGIL. Debugger says just that.
It happens on random ...
3
votes
1answer
91 views
perl6: do I need the @-sigil for userdefined variables?
Is there something I can't do without the '@'-sigil when working with user-defined variables?
#!perl6
use v6;
my $list = <a b c d e f>;
my @list = <a b c d e f>;
$list.list.perl.say;
...
1
vote
5answers
627 views
Can PHP be used without $ for variables?
Is it possible to name variables in a Java-like manner in PHP, such as by removing the need for a $ sign each time? If so, how can I enable the setting which does this?
0
votes
1answer
78 views
Perl compilation woes
I'm having some troble compiling this method:
#changes the names of the associations for $agentConf
#where the key value pairs in %associationsToChangeDict are the old and new values respectively
sub ...
0
votes
2answers
148 views
0
votes
4answers
263 views
What scope does an “at” sigil (@) give within Ruby functions?
It's been a while since I last did Ruby programming -- looking at somebody else's code, I see the @ sigil in a function (not a method -- external to any class definition), which I understood to be ...