RosettaCodeData/Task/Loops-Foreach/Halon/loops-foreach.halon
2023-07-01 13:44:08 -04:00

5 lines
92 B
Text

$things = ["Apple", "Banana", "Coconut"];
foreach ($things as $thing) {
echo $thing;
}