<?php
print "hello world\n";
?>
for ($i=0;$i< count($myList);$i++) {
print $i.": ".$myList[$i].$eoln;
}
foreach ($myList as $listItem) {
print $listItem.$eoln;
}
foreach (array_keys($myList) as $i) {
print $i.": ".$myList[$i].$eoln;
}