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

6 lines
92 B
Plaintext

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