RosettaCodeData/Task/Loops-Foreach/Halon/loops-foreach.halon
2017-09-25 22:28:19 +02:00

5 lines
92 B
Text

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