Skip to content

Instantly share code, notes, and snippets.

@claylo
Created June 8, 2011 17:01

Revisions

  1. Clay Loveless created this gist Jun 8, 2011.
    9 changes: 9 additions & 0 deletions hello.php
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,9 @@
    <?php
    function hello_world() {

    // a world subset
    $countries = array('USA', 'Germany', 'Spain', 'Austraila');

    print_r($countries);

    }
    6 changes: 6 additions & 0 deletions hello.py
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,6 @@
    def hello_world():

    # a world subset
    countries = ['USA', 'Germany', 'Spain', 'Austrailia']

    print countries