Re: 1980's Home Computer-style Package.

2005-06-17 Thread Oren Tirosh
http://tothink.com/python/progman/ This module implements BASIC-like NEW, LOAD, RUN (sorry, no SAVE...). Oren -- http://mail.python.org/mailman/listinfo/python-list

Re: 1980's Home Computer-style Package.

2005-06-16 Thread Terry Hancock
On Thursday 16 June 2005 11:09 am, Ralph Corderoy wrote: > > > Some years ago I saw a Python package or program that gave a > > > programming environment similar to the BASICs of 1980's home > > > computers. You got a cursor-addressable screen, e.g. PRINT TAB(10, > > > 20) "Hello", and some simple

Re: 1980's Home Computer-style Package.

2005-06-16 Thread Lee Harr
On 2005-06-16, Grant Edwards <[EMAIL PROTECTED]> wrote: > On 2005-06-16, Ralph Corderoy <[EMAIL PROTECTED]> wrote: > >>> Wild-ass guess, but you might try googling for "turtle python". >> >> OK, I've done that but it didn't help; it wasn't tied in with >> Turtle graphics, with which I'm familiar. >

Re: 1980's Home Computer-style Package.

2005-06-16 Thread Grant Edwards
On 2005-06-16, Ralph Corderoy <[EMAIL PROTECTED]> wrote: >> Wild-ass guess, but you might try googling for "turtle python". > > OK, I've done that but it didn't help; it wasn't tied in with > Turtle graphics, with which I'm familiar. Googling for '"python turtle" graphics programming' leads to h

Re: 1980's Home Computer-style Package.

2005-06-16 Thread Ralph Corderoy
Hi Skip, > > Some years ago I saw a Python package or program that gave a > > programming environment similar to the BASICs of 1980's home > > computers. You got a cursor-addressable screen, e.g. PRINT TAB(10, > > 20) "Hello", and some simple pixel-setting functions, e.g. RECTANGLE > > FILL 0, 1

Re: 1980's Home Computer-style Package.

2005-06-16 Thread Skip Montanaro
Ralph> Some years ago I saw a Python package or program that gave a Ralph> programming environment similar to the BASICs of 1980's home Ralph> computers. You got a cursor-addressable screen, e.g. PRINT Ralph> TAB(10, 20) "Hello", and some simple pixel-setting functions, Ralph>

1980's Home Computer-style Package.

2005-06-16 Thread Ralph Corderoy
Hi, Some years ago I saw a Python package or program that gave a programming environment similar to the BASICs of 1980's home computers. You got a cursor-addressable screen, e.g. PRINT TAB(10, 20) "Hello", and some simple pixel-setting functions, e.g. RECTANGLE FILL 0, 10, 20, 30. It probably u