RosettaCodeData/Task/Loops-Foreach/Halon/loops-foreach.halon

6 lines
92 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
$things = ["Apple", "Banana", "Coconut"];
foreach ($things as $thing) {
echo $thing;
}