Skip to content

Instantly share code, notes, and snippets.

View jdlangs's full-sized avatar

Josh Langsfeld jdlangs

  • General Motors
  • Austin, TX, USA
View GitHub Profile
@jdlangs
jdlangs / classgen.py
Last active August 29, 2015 14:07 — forked from anonymous/classgen.py
#!/usr/bin/env python
class_names = [
("Foo", ["bar", "baz"]),
("RJ", ["eat", "praps", "f"]),
]
file_str = "class.js"
def writeclass(file, name, members):