Class: LearnToCode
- Inherits:
-
Object
- Object
- LearnToCode
- Defined in:
- lib/learn_to_code.rb
Overview
demo class to show how gem works and build
Class Method Summary collapse
Class Method Details
.start(cource = "Happy Learning!!") ⇒ Object
17 18 19 20 21 22 23 24 25 26 |
# File 'lib/learn_to_code.rb', line 17 def self.start(cource="Happy Learning!!") case cource when "Computer Archtiecture" ComputerArchtiecture.start when "Design Pattern" DesignPattern.start else puts "#{cource}" end end |