Yes, CFML has supported dynamic arguments for as long as it has supported user-defined functions.
All arguments, whether explicitly defined, or whether passed in without being defined, exist in the Arguments scope.
The Arguments scope can be treated as both an array and a structure (key/value).
Here is the closest equivalent to your example, using script syntax:
function func()
{
for (a in arguments)
WriteOutput(arguments[a] & "is a quality argument");
}
Note that a in this example is the key name, not the value, hence why arguments[a] is used.
To be treated as code, the above script must either be within <cfscript>..</cfscript> tags, or alternatively inside a component {..} block inside a .cfc file.
Here's a couple of tag versions, the first equivalent to the for/in loop:
<cffunction name="func">
<cfloop item="a" collection=#Arguments#>
<cfoutput>#Arguments[a]# is a quality argument</cfoutput>
</cfloop>
</cffunction>
And this one allows you to access the value directly (i.e. a is the value here):
<cffunction name="func">
<cfloop index="a" array=#Arguments#>
<cfoutput>#a# is a quality argument</cfoutput>
</cfloop>
</cffunction>
In Railo* CFML, this last example can be expressed in script as:
function func()
{
loop index="a" array=Arguments
{
WriteOutput(a & 'is a quality argument');
}
}
*Railo is one of two Open Source alternatives to Adobe ColdFusion, the other being Open BlueDragon.