40 lines
1.2 KiB
Ruby
40 lines
1.2 KiB
Ruby
#build an app that solves a problem
|
|
#with 3 classes
|
|
#one gem
|
|
#ever wanted to solve the problem of your friends being not funny,
|
|
#they can't yo mama you when your mamadeserves it
|
|
|
|
|
|
#create classes that consists of the level of harassment of a yommama joke you wanted
|
|
#choices of easy, medium, hard
|
|
class begin_the_crazy
|
|
def initialize(easy, medium, hardcore)
|
|
@easy_harassment = easy
|
|
@medium_harassment= medium
|
|
@hardcore_harassment = hardcore
|
|
end
|
|
|
|
class easy_harassment
|
|
def easy(fat, ugly, dumb)
|
|
@fat = fat
|
|
@ugly = ugly
|
|
@dumb = dumb
|
|
end
|
|
#fat when dracula sucked her blood, he got diabetes
|
|
#ugly bob the builder saw her and said "I can't fix that"
|
|
#old so old that when she farts, dust comes out
|
|
|
|
class medium_harassment
|
|
def medium(whore, hairy, stupid)
|
|
#fat when she died she broke the stairway to heaven
|
|
#puts hairy, she so hairy you got carpet burn when she gave birth to you
|
|
#puts ugly when she looked out of the window, she got arrested for mooning
|
|
|
|
class hardcore_harassment
|
|
def hardcore()
|
|
|
|
#fat when she pressed up on an elevator, it goes down
|
|
#old when I told her to act her age, she died
|
|
|
|
|
|
puts "You little shit, you want to be harassed by yo mama's fat, ugly or dumb ass?"
|