-
Lesson Cover :rubylearning.com :: View topic - Important: Read This First
-
Objective:
To get you up-to-speed in Core Ruby programming. Learning and asking questions as a group 'jump-starts' the Ruby learning process.
-
-
Variables and Assignments: Ruby Study Notes - Best Ruby Guide, Ruby Tutorial
-
Keywords can't be used as variable names. def is a keyword
-
-
Fun with Strings: Ruby Study Notes - Best Ruby Guide, Ruby Tutorial
-
does not have anything in it at all; we call that an empty string.
-
puts 'It\'s my Ruby'
- 2 more annotations...
-
-
Numbers in Ruby: Ruby Study Notes - Best Ruby Guide, Ruby Tutorial
-
Ruby integers are objects of class Fixnum or Bignum. The Fixnum and Bignum classes represent integers of differing sizes. Both classes descend from Integer (and therefore Numeric). The floating-point numbers are objects of class Float, corresponding to the native architecture's double data type.
-
-
Ruby Features: Ruby Study Notes - Best Ruby Guide, Ruby Tutorial
-
Free format
-
Case sensitive
- 3 more annotations...
-
-
First Ruby Program: Ruby Study Notes - Best Ruby Guide, Ruby Tutorial
-
Press the F8 key to open an output window
-
Ctrl+Shift+I - this opens the Indentation Settings window
- 14 more annotations...
-
-
LinuxDevCenter.com -- An Interview with the Creator of Ruby
-
Ruby has been described as an absolutely pure object-oriented scripting language and a genuine attempt to combine the best of everything in the scripting world.
-
Yukihiro Matsumoto (or "Matz" as he's known online) is the creator of Ruby
-
-
Ruby Installation: Ruby Study Notes - Best Ruby Guide, Ruby Tutorial
-
Yukihiro Matsumoto, commonly known as 'Matz' created the Ruby language in 1993
-
-
rubylearning.com :: View topic - Lesson 1
-
We shall be referring to the documentation here - http://www.ruby-doc.org/core/
-
Constants begin with capital letters. Example PI, Length
-
-
Ruby Mentor, Guide: Ruby Study Notes - Best Ruby Guide, Ruby Tutorial
-
It is my observation that if one learns a programming language along with a group and with set targets every day; one learns faster.
-
-
Ruby Study Notes - Best Ruby Tutorial for Learning Ruby
-
RubyLearning.com is a thorough collection of Ruby Study Notes for those who are new to the Ruby programming language and in search of a solid introduction to Ruby's concepts and constructs - ruby-lang.org.
-
-
Ruby From Other Languages
-
an identifier starts with a capital letter,
it is a constant -
starts with
@, it is an instance variable - 7 more annotations...
-
-
Ruby in Twenty Minutes
-
In Ruby, anything on a line after a hash mark is a
comment and is ignored by the interpreter -
__FILE__is the magic variable that contains the name of the current
file. - 1 more annotations...
-
-
Ruby in Twenty Minutes
-
Ruby uses the good object-oriented approach of keeping data sort-of
hidden away.
-
-
Ruby in Twenty Minutes
-
Ruby’s response
=> niltells
us that it knows we’re done defining the method -
hto take a name as a parameter. - 2 more annotations...
-
-
Ruby in Twenty Minutes
-
putsalways
returns nil, which is Ruby’s absolutely-positively-nothing value. -
putsis the basic command to print something out in Ruby. - 2 more annotations...
-
1 - 18 of 18
Showing 20▼ items per page
List Comments
(0)
List Info
Sponsored Links
Ads by Google
