$array

Explicitly creates a hash
Syntax

$hash(<key>,<value>,<key>,<value>,....);

Description
Returns a hash with the specified items. Each <value> is indexed by the preceeding <key>. This is just an explicit way of creating a hash with a defined set of items, useful for increasing readability.
Examples
alias(test){ return $hash(1,X,2,Y,3,Z); }; %x = $test(); foreach(%y,%x) {     echo %y; } foreach(%y,$keys(%x)) {     echo %y }
See also
$array

Main, Functions
KVIrc 3.0.0 Documentation
Generated by dag at Wed Jul 7 23:12:51 2004