We are still actively working on the spam issue.

Difference between revisions of "BASIC"

From InstallGentoo Wiki
Jump to: navigation, search
(Create base page)
 
m (Forgot ")")
Line 1: Line 1:
 
{{stub}}
 
{{stub}}
  
'''BASIC''' (an acronym for '''Beginner's All-purpose Symbolic Instruction Code''') is an archaic computer language originally designed for simplicity for home users with personal computers. In the early days of PCs, computers would boot into a BASIC terminal, and from there you would conduct your business. There were many flavors of BASIC, including [[IBM]] Basic, [[Atari]] BASIC, and [[Famicom]] Basic (though this form of BASIC was never available for the Nintendo outside of Japan.
+
'''BASIC''' (an acronym for '''Beginner's All-purpose Symbolic Instruction Code''') is an archaic computer language originally designed for simplicity for home users with personal computers. In the early days of PCs, computers would boot into a BASIC terminal, and from there you would conduct your business. There were many flavors of BASIC, including [[IBM]] Basic, [[Atari]] BASIC, and [[Famicom]] Basic (though this form of BASIC was never available for the Nintendo outside of Japan).
  
 
== Structure ==
 
== Structure ==

Revision as of 04:15, 19 January 2016

BASIC (an acronym for Beginner's All-purpose Symbolic Instruction Code) is an archaic computer language originally designed for simplicity for home users with personal computers. In the early days of PCs, computers would boot into a BASIC terminal, and from there you would conduct your business. There were many flavors of BASIC, including IBM Basic, Atari BASIC, and Famicom Basic (though this form of BASIC was never available for the Nintendo outside of Japan).

Structure

Basic uses a simple coding structure that anyone can master. Each line is separated by a break and a number.

Hello World in Basic:

10 PRINT "HELLO WORLD"
20 GO TO 10
RUN