<slide>
<image filename="php7trans-200.png" />
<break/>

<blurb>✔ Keys in %list% Assignment</blurb>
<example><![CDATA[
<?php
$points = [
    [ "x" => 1, "y" => 2, "z" => 4 ],
    [ "x" => 2, "y" => 1 ],
];
 
foreach ( $points as list( "x" => $x, "y" => $y ) )
{
    echo "Point at ($x, $y)", PHP_EOL;
}
?>
]]></example>

</slide>
