gistlib
Here is a simple code to print a hut in Python using ASCII art:
main.py /\ //\\ // \\ // \\ =========\ | || | || | || | || | || +-------+ 121 chars12 lines
/\ //\\ // \\ // \\ =========\ | || | || | || | || | || +-------+
main.pyhut = ''' /\ //\\ // \\ // \\ =========\ | || | || | || | || | || +-------+''' print(hut) 145 chars14 lines
hut = ''' /\ //\\ // \\ // \\ =========\ | || | || | || | || | || +-------+''' print(hut)
You can run this script to get the output.
gistlibby LogSnag