P.S. So this is my first post on a mailinglist please be clement if
a do anything wrong.
And this response is offered entirely in the spirit of offering
helpful advice. So I hope you won’t take it askance.
It’s often better to avoid posting answers to questions when you’re
not actually sure that you know the answer.
There are dozens of people subscribed to this mailing list. If you
think you might not know the answer to a question, it’s usually better
to wait for a day or two. Chances are, someone who does know will
chime in, and either you’ll get confirmation that you were right, or
else you’ll learn something new. Posting an answer with the caveat
that you’re just guessing can confuse the original poster, who’s
presumably already a little confused.
Of course, it’s a different matter when nobody else is sure what the
answer is either. If a couple of days go by and still nobody has
replied, then that’s a good time to put forth your best guess.
Alternately, if you’re not sure of your answer, sometimes you can
become sure by writing a short program to test your idea out. Then you
can post with confidence, and both of you will have learned something
new.
If you had run this code through a compiler, for example:
Int8 Playfield[3][3] = { “0, 1, 0”, “1, 1, 1”, “0, 1, 1”};
You would have gotten an error message from the compiler, and would
have realized that you used quotes instead of curly braces around your
inner initialization lists, and you would have had a chance to correct
your mistake.
b