I'm not sure what you mean here. If I do something like this, I get
text in both columns:
column_box [0, cursor], columns: 2, width: 330 do
text "lorum ipsum dolor sit amet " * 500
end
The columns default to the height of their containing bounding box,
and they flow left to right.
> On the other hand, if I do set an explicit height the text flows
> nicely to the second columns, but then the height of the columns not
> automatically adjust to the length of the text.
That's right -- if you want to balance the columns in height, you'll
have to try to figure out first what height that should be. Prawn's
column boxes (like newspaper or magazine columns) just flow
left-to-right, they don't try to balance each other.
Brad