Dennis Lee Bieber <wlfr...@ix.netcom.com>:
>       For the OP: Very few languages have built-in graphics commands;
> which is why porting BASIC programs was so difficult. This means you
> have to import some graphical framework and use ITS command functions.

The Racket dialect of the Scheme programming language has an interesting
approach:

   | > (circle 10)
   | ⚪

   [...]

   | > (rectangle 10 20)
   | ▯


   [...]

   | > (hc-append (circle 10) (rectangle 10 20))
   | ⚪▯

   <URL: https://docs.racket-lang.org/quick/>

Follow the link for more elaborate examples.


Marko
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to