23 lines
534 B
Text
23 lines
534 B
Text
integer j;
|
|
list l, x;
|
|
text s, t;
|
|
|
|
l = list("---------- Ice and Fire ------------",
|
|
"",
|
|
"fire, in end will world the say Some",
|
|
"ice. in say Some",
|
|
"desire of tasted I've what From",
|
|
"fire. favor who those with hold I",
|
|
"",
|
|
"... elided paragraph last ...",
|
|
"",
|
|
"Frost Robert -----------------------");
|
|
|
|
for (, t in l) {
|
|
file().b_affix(t).list(x, 0);
|
|
for (j, s in x.reverse) {
|
|
o_space(sign(j));
|
|
o_text(s);
|
|
}
|
|
o_newline();
|
|
}
|