Skip to content

Instantly share code, notes, and snippets.

@Hunter-Dolan
Created December 20, 2011 02:31
Show Gist options
  • Save Hunter-Dolan/1499948 to your computer and use it in GitHub Desktop.
Save Hunter-Dolan/1499948 to your computer and use it in GitHub Desktop.
BestServices
<?php
$bestServices = array("Google", "Github", "Twitter", "Gmail");
foreach($bestServices as $bestService) {
echo $bestService."\n";
}
?>
bestServices = ["Google", "Github", "Twitter", "Gmail"]
bestServices.each{|bestService|
puts bestService
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment