txt.cam - a CAMILA library for text representation
txtFlat(l:txt):STR-seq
txt2File(fn:STR,t:txt):SYM
txtAddNL(l:txt):txt
This library provides for a simple representation of (nested) text. Text can involve strings, integers and symbols.
Last Update: 1999.11.11
The informal semantics of the operators are as follows:
txtFlat(l)
flattens l while converting integers and symbols to strings.
txt2File(fn,t)
writes txt object t into file fn.
This function is obsolete and has been replaced by ioTxt2File(fn,t)
available in library io.cam.
txtAddNL(l)
adds newline characters to every ``line'' in l.
This may help in avoiding too long lines when dumping txt objects to
files via txt2File.
No include commands found.
J.N. Oliveira (jno@di.uminho.pt)