Skip to content

Instantly share code, notes, and snippets.

View jacobs902207's full-sized avatar

jacobs902207 jacobs902207

  • kakao
  • Gyeonggi, South Korea
View GitHub Profile
@diofeher
diofeher / builder_python.py
Created June 1, 2010 12:48
Builder Pattern implemented in Python
#!/usr/bin/python
# -*- coding : utf-8 -*-
"""
@author: Diogenes Augusto Fernandes Herminio <[email protected]>
"""
# Director
class Director(object):
def __init__(self):
self.builder = None