Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Simula question

1 view
Skip to first unread message

Danila

unread,
Mar 12, 1998, 3:00:00 AM3/12/98
to

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

Caroline Kierstead

unread,
Mar 12, 1998, 3:00:00 AM3/12/98
to

In article <EpoM9...@undergrad.math.uwaterloo.ca>,

Danila <dher...@undergrad.math.uwaterloo.ca> wrote:
>
>I'm looking for some function, say print(), which does the following:
>
>print("foo");print("bar");
>outputs
>foo
>bar

Use "outimage;" i.e.

outtext("foo");outimage;outtext("bar");

0 new messages