If you're new here, you may want to subscribe to my RSS feed. Thanks for visiting!
While using Ruby for your projects, you may need some references.
These are some references that might help you in using Ruby:
- Language
- Comments start with a pound/sharp (#) character and go to EOL.
- Ruby programs are sequence of expressions.
- Each expression is delimited by semicolons(;) or newlines unless obviously incomplete (e.g. trailing ‘+’).
- Backslashes at the end of line does not terminate expression.




