llvmpy/newbinding/binding/utils.py
Siu Kwan Lam a12c4da93d Init commit for work on new binding
This contains the foundation for the new binding as well as early work on Module and Type.
2013-02-05 13:47:32 -06:00

6 lines
110 B
Python

def indent_println(println):
def _println(s):
println("%s%s" % (' '* 4, s))
return _println