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

6 lines
92 B
Text
Raw Permalink Normal View History

2017-09-23 10:01:46 +02:00
$things = ["Apple", "Banana", "Coconut"];
foreach ($things as $thing) {
echo $thing;
}