On Tue, 30 Jun 2009 21:38:07 +0100, Thomas Dalton wrote:
2009/6/30 Michael Daly michael.daly@kayakwiki.org:
How does that work with anonymous variables? Are all $[NUMBER] style names count as auto-declared?
They're not anonymous, they're just named sequentially. Most languages should have some method of accessing/declaring those, i.e.
XSL: <xsl:param name="1">default</xsl:param> <xsl:value-of select="$1"/>
perl: my $p=$ARG{1}; print $p;
etc...
If we do roll our own, it should have similar fucntionality.