module ProductDiscount

Constants

VERSION

Public Class Methods

applyDiscount(price) click to toggle source

Your code goes here…

# File lib/product_discount.rb, line 6
def self.applyDiscount(price)
  price*0.8
end