Turbo Basic
From Seo Wiki - Search Engine Optimization and Programming Languages
This software is from the 1987-88 period and features the Borland "black screen" similar to Turbo Pascal 4.0, Turbo C 1.0/1.5, and Turbo Prolog 1.1. Borland did not adopt its trademark "blue screen" integrated development environment until the 1989 period when Turbo C 2.0, Turbo C++ 1.1, etc. were released. By this time, Turbo Basic and Turbo Prolog were no longer being sold.
Unlike most BASIC implementations of this period, Turbo Basic was a full compiler which generated native code for MS-DOS. Other implementations were either interpreters, or relied heavily on a runtime library. The integrated development environment could run a BASIC program inside itself (see sample below) for traditional BASIC debugging, or generate an MS-DOS EXE file which was completely stand-alone and could be run on other systems without the Turbo Basic product or runtime libraries.
[edit] 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$
[edit] References
| ||||||||||||||
es:Turbo BASIC fr:Turbo Basic id:Turbo Basic ja:Turbo Basic nl:TurboBASIC pl:Turbo Basic zh:Turbo BASIC it:Turbo Basic