Turbo_BASIC_programming_language Turbo_BASIC_programming_language

Turbo BASIC programming language - Definition

This article is about the Borland version of Turbo-Basic. There is an article on Turbo Basic XL - a dialect of BASIC for the Atari 8-bit family.

Turbo BASIC is a BASIC compiler and dialect originally created by Bob Zales and bought from him by Borland. When Borland decided to stop publishing it, Zales bought it back from them, renamed it to PowerBASIC and set up the PowerBASIC company to continue support and development of it. It is still sold today.

Code sample

INPUT "What is your name"; A$
PRINT "Hello "; A$
DO
  S$ = ""
  INPUT "How many stars do you want to print"; S
  FOR I = 1 TO S
    S$ = S$ + "*"
  NEXT I
  PRINT S$
  DO 
    INPUT "Do you want to print more stars"; Q$
  LOOP WHILE LEN(Q$) = 0
  Q$ = LEFT$(Q$, 1)
LOOP WHILE (Q$ = "Y") OR (Q$ = "y")
PRINT "Goodbye "; A$


Example Usage of programming

delmontyb: So I ordered some iPhone programming books today. I got my game design idea, now it's time to get to work on making the game. Lots to read.
blacktar: RT @BoazSender: Hilarious table of programmers perceptions of programming languages: http://gul.ly/1v (via @thomasfuchs)
FlyersOnTheFly: RT (@NHL) NHL Network to deliver 12 hrs of live, exclusive #WinterClassic programming in HD. Full rundown here: http://bit.ly/5EjWpd #Flyers
Copyright 2009 WordIQ.com - Privacy Policy  :: Terms of Use  :: Contact Us  :: About Us
This article is licensed under the GNU Free Documentation License. It uses material from the this Wikipedia article.