Skip to content

Instantly share code, notes, and snippets.

View dag10's full-sized avatar

Drew Gottlieb dag10

View GitHub Profile
@dag10
dag10 / Product.py
Last active August 29, 2015 14:08 — forked from blackcorvidae/Product.py
class Product:
name = "Product Name"
description = "Product Description"
price = 0
def __init__(self, name, description):
self.name = name
self.description = description
def setPrice(self, price):