The BASIC programming language turns 60

Enlarge / Part of the cover illustration from “The Applesoft Tutorial” BASIC manual that shipped with the Apple II computer starting in 1981.

Apple, Inc.

Sixty years ago, on May 1, 1964, at 4 am in the morning, a quiet revolution in computing began at Dartmouth College. That’s when mathematicians John G. Kemeny and Thomas E. Kurtz successfully ran the first program written in their newly developed BASIC (Beginner’s All-Purpose Symbolic Instruction Code) programming language on the college’s General Electric GE-225 mainframe.

Little did they know that their creation would go on to democratize computing and inspire generations of programmers over the next six decades.

What is BASIC?

In its most traditional form, BASIC is an interpreted programming language that runs line by line, with line numbers. A typical program might look something like this:

10 PRINT “WHAT IS YOUR NAME?”

20 INPUT N$

30 PRINT “HELLO, “;N$

Programs could jump between lines using commands like GOTO, which often led to simple looping programs created by beginners that would fill the screen with repeating words. Or one could quickly write a program that counted upward toward infinity like this:

10 LET X=X+1

20 PRINT X

30 GOTO 10

Today, most programming languages use different types of structural paradigms (such as functions and object-oriented programming), but the easy-to-grasp syntax of BASIC, with its plain English keywords, proved popular and easy to use for beginners.

The journey to BASIC

Before early computers became small, inexpensive, and “personal,” they were difficult to use. At first, programming a computer involved literally connecting wires, then flipping switches, and even punching paper cards. Over time, engineers developed ways to abstract away low-level programming operations with a more friendly interface. That’s where programming languages come in.

A brochure for the GE 210 computer from 1964. BASIC's creators used a similar computer four years later to develop the programming language.
Enlarge / A brochure for the GE 210 computer from 1964. BASIC’s creators used a similar computer four years later to develop the programming language.

Prior to BASIC, programming languages like Fortran, Algol, and COBOL proved complex and were primarily used by professionals. Kemeny and Kurtz saw a need for amateurs who were not dedicated computer engineers to be able to use computers as well. Their journey to create a more user-friendly language began in 1956 with Dartmouth Simplified Code (DARIMSCO), followed by the Dartmouth Oversimplified Programming Experiment (DOPE). While DOPE proved too simple to be of much use, the lessons learned from these projects informed the development of BASIC, which started in 1963.

In the same year, Kemeny applied for a National Science Foundation grant to bring a GE-225 computer to Dartmouth and build the first fully functional general-purpose time-sharing system. Despite the grant referees’ doubts about his plan to accomplish the work with a group of undergraduates, Kemeny secured the funding.

Together with Kurtz and a group of undergraduate students, Kemeny built a time-sharing system to open computer access to all at Dartmouth. The simplicity and power of BASIC quickly made it a favorite among students and faculty alike.

BASIC goes PC

The cover of
Enlarge / The cover of “The Applesoft Tutorial” BASIC manual that shipped with the Apple II computer starting in 1981.

The impact of BASIC extended far beyond Dartmouth’s campus. As part of the deal to buy the GE computer, the undergraduates built the operating system in BASIC for General Electric’s version of time-sharing. This allowed colleges, high schools, and individuals across the country to dial into mainframe computers and write programs using BASIC.

In 1975, Paul Allen and Bill Gates adapted the language for personal computers like the Altair 8800, expanding its reach to a new audience of small computer owners and founding Microsoft in the process. In 1976, Steve Wozniak developed a BASIC interpreter from scratch for the Apple I using self-taught methods and minimal resources. This became Integer BASIC for the Apple II a year later, and BASIC (as Applesoft BASIC) remained a key part of the Apple II throughout the platform’s lifespan.

In the late 1970s and early 1980s, BASIC continued its prominent role as a programming interface and quasi-operating system for popular home computers such as the Atari 800, Commodore VIC-20, Commodore 64, TI-99/4A, BBC Micro, and the IBM PC, where it either came preinstalled in ROM as part of the operating system or shipped as an easily accessible programming environment. Early computer magazines such as Compute! printed BASIC code listings that could be typed in line by line.

BASIC today

Today, BASIC remains popular in hobbyist retrocomputing circles, but few use it as a practical language. And yet it never truly died out—instead, it continued to evolve.

Many other BASIC dialects exist today for different platforms, but some of Microsoft’s are most commonly used. After Microsoft’s GW-BASIC and QuickBasic, descendants of BASIC such as Visual Basic, Visual Basic for Applications (VBA), and Microsoft Small Basic live on. Visual Basic, introduced by Microsoft in 1991, became a popular choice for developing Windows applications, while VBA is widely used for scripting and automation in Microsoft Office applications. Microsoft Small Basic, released in 2008, serves as an educational tool for teaching programming concepts to beginners.

Meanwhile, other modern languages, such as Python and JavaScript, have taken on roles similar to those once filled by BASIC. These languages prioritize simplicity, readability, and ease of use, making them popular choices for introductory programming courses and rapid application development.

Despite the decline in its practical use, BASIC’s legacy lives on through its influence on subsequent programming languages and its role in making computing accessible to a broader audience. As we commemorate the 60th anniversary of BASIC, let’s raise a glass to Kemeny and Kurtz for empowering several generations of young computer programmers.

Reference

Denial of responsibility! Web Today is an automatic aggregator of Global media. In each content, the hyperlink to the primary source is specified. All trademarks belong to their rightful owners, and all materials to their authors. For any complaint, please reach us at – [email protected]. We will take necessary action within 24 hours.
DMCA compliant image

Leave a Comment