Skip to content

Instantly share code, notes, and snippets.

@fritids
Forked from claylo/hello.php
Created May 18, 2013 12:44
Show Gist options
  • Save fritids/5604282 to your computer and use it in GitHub Desktop.
Save fritids/5604282 to your computer and use it in GitHub Desktop.
<?php
function hello_world() {
// a world subset
$countries = array('USA', 'Germany', 'Spain', 'Austraila');
print_r($countries);
}
def hello_world():
# a world subset
countries = ['USA', 'Germany', 'Spain', 'Austrailia']
print countries
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment