Hey, I've been enjoying the library but I have a quick question:
I have a square grid, say 12x12, and I'd like to overlay a thinner font for text on it, say 8x12. I've found that I can do this with put_ext, incrementing my dx by 8 for every character:
for (i,char) in enumerate(text):
terminal.put_ext(x,y,i*8, 0, ord(char))
But this is rather less than ideal: it means lots of slow looping in python, and prevents me from using the nice annotation syntax (e.g., for color) that exists for print. Is there a way to accomplish this same purpose with the print function?