Programming Ruby

Ruby is often hailed as the most beautiful programming languages there is. Originating from Japan, it combines some of the best elements of other languages to create something very amazing. Often ruby programs take a fraction of the time to develop, and are much easier to maintain. Ruby is a scripting language that focuses on ease of programmer use, combining Object Orientation, Dynamic Variable Types, and more.

A Ruby Example

puts "Hello World"

Wait, what? It's that simple? Yes! Ruby is really that simple. Other programming languages take much more code to accomplish the same goals.

A Java Example

// Must be stored in a file called "hello.java"
public class hello {
  static public void main(String[] argv) {
    System.out.println("Hello world!");
  }
}


Sign Up
Copyright (c) 2014 TheFantasy.info
Fantasy video game development tutorials, scripts, designs, and more from your fantasy source.