fn(parameter_list) => expr
$arrow = function ($x) use ($y) { return $x + $y;};
$arrow = fn($x) => $x + $y;