Hello World

October 23, 2013
func main() {
    fmt.Println("hello world")
}

 

class Hello {
    def main(args: Array[String]) {
        println("hello world")
    }
}

 

process.stdout.write("hello world")

 

main = print "hello world"

Discussion, links, and tweets

I am learning to be programmer and math.