-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopp.rb
43 lines (31 loc) · 772 Bytes
/
opp.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
class Computer
attr_accessor :brand, :color, :processor, :memory, :storage
end
class Laptop < Computer
def web_cam
return "web cam"
end
def keyboard
return 'backlit'
end
end
class Desktop < Computer
def get_graphics(graphics)
@graphics = graphics
end
end
my_laptop = Laptop.new
my_laptop.brand = "HP"
my_laptop.processor = 'i7-4700k'
my_laptop.memory= '16gb'
my_laptop.storage = '750gb'
my_laptop.color = 'Silver'
brand = my_laptop.brand
color = my_laptop.color
processor = my_laptop.processor
memory = my_laptop.memory
storage = my_laptop.storage
puts """The Laptop I want is an #{brand}, it has a #{processor} processor,
#{memory} of ram, a #{storage} hard drive, it's #{color}, and it has a
#{my_laptop.web_cam}!!!"""
puts my_laptop.inspect