-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathClass1.rb
50 lines (43 loc) · 981 Bytes
/
Class1.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
class MyCar
attr_accessor :color
def initialize(year, model, color)
@year = year
@model = model
@color = color
@current_speed = 0
end
def speed_up(number)
@current_speed += number
puts "You push the gas and accelerate #{number} mph."
end
def spray_paint(color)
# color = color
puts "Your new #{color} paint job looks great!"
end
def brake(number)
@current_speed -= number
puts "You push the brake and decelerate #{number} mph."
end
def current_speed
puts "You are now going #{@current_speed} mph."
end
def color
puts "Color is #{@color}"
end
def shut_down
@current_speed = 0
puts "Let's park this bad boy!"
end
end
lumina = MyCar.new(1997, 'chevy lumina', 'white')
lumina.speed_up(20)
lumina.current_speed
lumina.speed_up(20)
lumina.current_speed
lumina.brake(20)
lumina.current_speed
lumina.brake(20)
lumina.current_speed
lumina.shut_down
lumina.current_speed
lumina.spray_paint('blue')