<?php $stack = array("orange", "banana", "apple", "raspberry"); $fruit = fn() => array_shift($stack); var_dump($fruit()); var_dump($fruit()); var_dump($fruit()); var_dump($fruit());
You have javascript disabled. You will not be able to edit any code.