Haga un resumen de Ruby:
4 Reasons Why You Should Learn Ruby As Your First Programming Language
Learning to code has a steep learning curve. You’ll encounter foreign concepts, technical jargon, and difficult choices. One of the very first choices you’ll have to make is which programming language you should start with.
Programming languages are similar to spoken languages. Each programming language falls into one or more categories. A few categories you might have heard of include imperative, object oriented, functional, or logic-based. Fortunately, once you learn one language it’s much easier to learn a second language in the same category. Unfortunately, that first language is going to be tough to learn.
Ruby is a general purpose programming language created in the 1990s by Yukihiro “Matz” Matsumoto. It’s also one of the best languages to start with when you’re first learning to code.
Ruby is one of the easier languages to learn
I remember when I first started learning to code. It was an introductory Computer Science class and the course curriculum used C++. In the world of programming, everyone’s first computer program is one that displays the message “Hello, world!”. It’s known as the “Hello World Program”.
Here’s what that looks like using C++:
C++ is complex
To display “Hello, world!” to a computer screen, you’ll have to learn multiple C++ functions and keywords.
Available at: http://www.skilledup.com/learn/programming/4-reasons-learn-ruby-first-programming-language/ (Access in June, 2014)
Ruby is considered a higher level programming language than C++. A high-level language features strong abstractions from computer details. Whereas low-level languages are closer to machine details (like memory addresses or CPU registers), high-level languages are closer to a naturally spoken language.
When you’re first learning to code, a high-level programming language like Ruby is much easier to use.
Available at: http://www.skilledup.com/learn/programming/4-reasons-learn-ruby-first-programming-language/ (Access in June, 2014)