After learning about more programming languages, I would now like to add my picks.
One of my picks is Ruby. It's pretty easy to use. For example, if I want to build a Ruby script that prints "Hello World" to the console three times, I would write:
. If I wanted Ruby to print each value of an array to the console, I would write:
. Click here to download the Ruby virtual machine.
My next pick is Io, because it was built by someone who didn't really understand programming languages. For a programmer who is familiar with object-oriented programming, the syntax is very easy to learn. I imagine it isn't too hard for a beginner to learn. Click here to visit Io's Website.
My third pick is Swift. This language will be released with Xcode 6 in the fall. This language has been touted as the one that will bring in more app store apps. Unlike the other two languages, Swift code is not run in a virtual machine. In fact, it uses the same compiler and runtime as Objective-C code, so you can use libraries that were built in Objective-C.
One of my picks is Ruby. It's pretty easy to use. For example, if I want to build a Ruby script that prints "Hello World" to the console three times, I would write:
Code:
3.times do { puts "Hello World" }
Code:
array.each { |elementOfArray| puts elementOfArray }
My next pick is Io, because it was built by someone who didn't really understand programming languages. For a programmer who is familiar with object-oriented programming, the syntax is very easy to learn. I imagine it isn't too hard for a beginner to learn. Click here to visit Io's Website.
My third pick is Swift. This language will be released with Xcode 6 in the fall. This language has been touted as the one that will bring in more app store apps. Unlike the other two languages, Swift code is not run in a virtual machine. In fact, it uses the same compiler and runtime as Objective-C code, so you can use libraries that were built in Objective-C.