Difference between revisions of "BASIC"

From Computer History Wiki
Jump to: navigation, search
(Procedural Versions: fixed order)
m (clarify)
 
(4 intermediate revisions by 2 users not shown)
Line 1: Line 1:
BASIC is the "Beginner's All-purpose Symbolic Instruction Code" [[programming language]], created by John G. Kemeny and Thomas E. Kurtz at Dartmouth College for pedagogical use, and first introduced in 1964. That original version was an [[interpreter]] which ran under a [[time-sharing]] [[operating system]] on a small [[mainframe]].
+
BASIC is the "Beginner's All-purpose Symbolic Instruction Code" [[programming language]], created by John G. Kemeny and Thomas E. Kurtz at Dartmouth College for pedagogical use, and first introduced in 1964.
 +
 
 +
That original version was an [[interpreter]] which ran under a [[time-sharing]] [[operating system]] on a small [[mainframe]]. It was initally developed on a [[GE-235]] (a GE-235 combined with a [[Datanet-30]] [[front end]], the configuration used by the original system, was designated a 'GE-265'). The [[Dartmouth Time Sharing System]], where BASIC was greatly improved, ran on the later [[GE-635]].
  
 
It later became popular on [[minicomputer]]s, in exactly the same usage mode. Since it was very simple for users to understand, many [[microcomputer]]s from the 1970's and 1980's would include BASIC as a feature.
 
It later became popular on [[minicomputer]]s, in exactly the same usage mode. Since it was very simple for users to understand, many [[microcomputer]]s from the 1970's and 1980's would include BASIC as a feature.
Line 25: Line 27:
  
 
== Popular versions ==
 
== Popular versions ==
Just a quick grouping of popular BASIC programming laguages
+
Just a quick grouping of popular BASIC programming languages
  
 
*[[HP BASIC]] (1969)
 
*[[HP BASIC]] (1969)
*[[Altar BASIC]] (1978)
+
*[[Altair BASIC]] (1978)
  
 
*[[Integer BASIC]] (1977)
 
*[[Integer BASIC]] (1977)
Line 35: Line 37:
 
*[[BBC BASIC]] (1981)
 
*[[BBC BASIC]] (1981)
  
*[http://gunkies.org/wiki/Microsoft_BASIC#IBM_Cassette_BASIC Cassette BASIC] (1981)
+
*[[Microsoft BASIC#IBM Cassette BASIC|Cassette BASIC]] (1981)
*[http://gunkies.org/wiki/Microsoft_BASIC#IBM_Advanced_BASIC BASICA] (1981)
+
*[[Microsoft BASIC#IBM Advanced BASIC|BASICA]] (1981)
*[http://gunkies.org/wiki/Microsoft_BASIC#GW-BASIC GWBASIC] (1988)
+
*[[Microsoft BASIC#GW-BASIC|GWBASIC]] (1988)
*[http://gunkies.org/wiki/Microsoft_BASIC#Quick_Basic Quick_BASIC] (1990)
+
*[[Microsoft BASIC#Quick Basic|Quick BASIC]] (1990)
  
 
{{semi-stub}}
 
{{semi-stub}}
  
[[Category:Languages]]
+
==Further reading==
 +
 
 +
* John G. Kemeny, Thomas E. Kurtz, ''Back to BASIC: The History, Corruption, and Future of the Language'', Addison-Wesley, Reading, 1985
 +
 
 +
[[Category: Languages]]

Latest revision as of 03:39, 25 January 2023

BASIC is the "Beginner's All-purpose Symbolic Instruction Code" programming language, created by John G. Kemeny and Thomas E. Kurtz at Dartmouth College for pedagogical use, and first introduced in 1964.

That original version was an interpreter which ran under a time-sharing operating system on a small mainframe. It was initally developed on a GE-235 (a GE-235 combined with a Datanet-30 front end, the configuration used by the original system, was designated a 'GE-265'). The Dartmouth Time Sharing System, where BASIC was greatly improved, ran on the later GE-635.

It later became popular on minicomputers, in exactly the same usage mode. Since it was very simple for users to understand, many microcomputers from the 1970's and 1980's would include BASIC as a feature.

One of the more popular versions was the Microsoft ROM version, which was used in many machines.

Microsoft went on to improve BASIC with Quick Basic which removed line numbers, and made BASIC more procedural, then the next evolution was Visual Basic a pseudo Object Oriented version for programming the Microsoft Windows environments. And finally the Visual Basic .net language which is for the .net framework.

Early versions

Early versions of Basic were known for needing line numbers, and it allowed direct hardware access via PEEK,POKE keywords. Many of these programs were NOT portable, as the hardware was not standardized, and many vendors added their own extensions to the language.

10 PRINT "HELLO WORLD."

A sample basic program.

Procedural Versions

With Quick Basic, programs no longer needed line numbers, and the language was able to use the medium & large memory models with later versions. Quick Basic was also included in MS-DOS 5.0 replacing the older GWBasic.

A sample QuickBasic program:

PRINT "HELLO WORLD."

Popular versions

Just a quick grouping of popular BASIC programming languages

Further reading

  • John G. Kemeny, Thomas E. Kurtz, Back to BASIC: The History, Corruption, and Future of the Language, Addison-Wesley, Reading, 1985