Ruby fundamentals through coding exercises
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
1.1 KiB

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. # Ruby basics
  2. Ruby fundamentals through coding exercises.
  3. Contents of this repository are based on [Ruby programming course material](https://campusonline.fi/course/ruby-ohjelmointi) provided by Metropolia University of Applied Sciences.
  4. **NOTE**: Assignments and their descriptions are in Finnish for meanwhile. I have a plan to translate them to English.
  5. ## Contents
  6. - [Fundamentals](1_fundamentals)
  7. - Description: Ruby syntax and basic methods
  8. - [Data types](2_datatypes)
  9. - Description: Different datatypes in Ruby
  10. - [Logical operators and conditions](3_logical-operators-and-conditions)
  11. - Description: `if/else` statements & `case` structure in Ruby
  12. - [Loops](4_loops)
  13. - Description: `for`, `while` and `until` loops in Ruby
  14. - [External files](5_external-files)
  15. - Description: File operations in Ruby
  16. - [Methods](6_methods)
  17. - Description: Custom methods in Ruby
  18. - [Modules](7_modules)
  19. - Description: Custom modules in Ruby
  20. - [Errors and exceptions](8_errors)
  21. - Description: Error and exception handling in Ruby
  22. - [Classes and objects](9_classes-and-objects)
  23. - Description: Custom classes and objects in Ruby