Howdy!

I don't know...

However, the question brings to mind the TUTOR language (used on PLATO many years ago and once again available). The language uses commands with arguments. The commands are flush left, up to seven characters long, then tab to column 8 for the arguments. In the course of its life, structured programming features were added -- if, loop, etc.

unit foo next bar if a > 123 . at 1010 . write a is big... endif calc c <= 0 loop . calc c <= c + 1 outloop c > 10 reloop c < 5 . at 1210 . write c between 5 and 10 endloop

You could, of course, nest those structures. That made it ugly if you got deep into indentation...especially given that the screen is 32x64. Yeah, uniform indentation is not necessarily a Bad Thing, especially if the alternative is doing without block-like stuff.

PLATO ran on CDC mainframes such as the Cyber. Some folks are running a Cyber emulator on a high-end Pentium box (with a Mac as the backup) on top of which they are running NOS and PLATO. You can read more about it at http://www.cyber1.org.

yours,
Michael

In reply to Re^3: Perl or Python? by herveus
in thread Perl or Python? by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.