#!/home/nick/bin/feather2

class HelloWorld {

    // This is how you define the entry point for the program
    func main( args : String... ) {

        println( "Hello World" )

        // Now echo any arguments passed into the script.
        for ( arg in args ) {
            println( "    $arg" )
        }
    }
}
