Hi, I have the following simula question: how can one print lines of text
on the screen?
The outtext() function is not good enough because if one does
outtext("foo");outtext("bar");
then the output is
foobar
I'm looking for some function, say print(), which does the following:
print("foo");print("bar");
outputs
foo
bar
thanks.
--
Daniel Herling, CS, U(W)
The 43rd Law of Computing:
When something can go wr
fortune: Segmentation Violation -- core dumped
Use "outimage;" i.e.
outtext("foo");outimage;outtext("bar");