Basics of Ruby Programming
Variables and Data Types:
In Ruby, variables don't have types; instead, objects have types. Variables simply reference objects. Here's an example:
```ruby
name = "John" # String
age = 25 # Integer
salary = 2500.50 # Float
i...