Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

BASIC

From Wikipedia, the free encyclopedia
(Redirected fromBASIC programming language)
Family of programming languages
For other uses, seeBASIC (disambiguation).

BASIC
ParadigmNon-structured, laterprocedural, laterobject-oriented
Designed by
First appearedMay 1, 1964; 60 years ago (1964-05-01)
Majorimplementations
Influenced by
Influenced

BASIC (Beginners' All-purpose Symbolic Instruction Code)[1] is a family ofgeneral-purpose,high-level programming languages designed for ease of use.The original version was created byJohn G. Kemeny andThomas E. Kurtz atDartmouth College in 1963. They wanted to enable students in non-scientific fields to use computers. At the time, nearly all computers required writing custom software, which onlyscientists andmathematicians tended to learn.

In addition to the programming language, Kemeny and Kurtz developed theDartmouth Time-Sharing System (DTSS), which allowed multiple users to edit and run BASIC programs simultaneously on remote terminals. This general model became popular onminicomputer systems like thePDP-11 andData General Nova in the late 1960s and early 1970s.Hewlett-Packard produced an entire computer line for this method of operation, introducing theHP2000 series in the late 1960s and continuing sales into the 1980s. Many early video games trace their history to one of these versions of BASIC.

The emergence ofmicrocomputers in the mid-1970s led to the development of multiple BASIC dialects, includingMicrosoft BASIC in 1975. Due to the tinymain memory available on these machines, often 4 KB, a variety ofTiny BASIC dialects were also created. BASIC was available for almost any system of the era and became thede facto programming language forhome computer systems that emerged in the late 1970s. ThesePCs almost always had aBASIC interpreter installed by default, often in the machine'sfirmware or sometimes on aROM cartridge.

BASIC declined in popularity in the 1990s, as more powerful microcomputers came to market and programming languages with advanced features (such asPascal andC) became tenable on such computers. By then, most nontechnical personal computer users relied on pre-written applications rather than writing their own programs. In 1991,Microsoft releasedVisual Basic, combining an updated version of BASIC with avisual forms builder. This reignited use of the language and "VB" remains a major programming language[2][3] in the form ofVB.NET, while a hobbyist scene for BASIC more broadly continues to exist.[4][5]

Origin

[edit]

John G. Kemeny was the chairman of the Dartmouth College Mathematics Department. Based largely on his reputation as an innovator in math teaching, in 1959 the college won anAlfred P. Sloan Foundation award for $500,000 to build a new department building.[6]Thomas E. Kurtz had joined the department in 1956, and from the 1960s Kemeny and Kurtz agreed on the need for programming literacy among students outside the traditionalSTEM fields. Kemeny later noted that "Our vision was that every student on campus should have access to acomputer, and any faculty member should be able to use a computer in the classroom whenever appropriate. It was as simple as that."[7]

Kemeny and Kurtz had made two previous experiments with simplified languages,DARSIMCO (Dartmouth Simplified Code) andDOPE (Dartmouth Oversimplified Programming Experiment). These did not progress past a single freshman class. New experiments usingFortran andALGOL followed, but Kurtz concluded these languages were too tricky for what they desired. As Kurtz noted, Fortran had numerous oddly formed commands, notably an "almost impossible-to-memorize convention for specifying a loop:DO100,I=1,10,2. Is it '1, 10, 2' or '1, 2, 10', and is the comma after the line number required or not?"[7]

Moreover, the lack of any sort of immediate feedback was a key problem; the machines of the era usedbatch processing and took a long time to complete a run of a program. While Kurtz was visitingMIT,John McCarthy suggested thattime-sharing offered a solution; a single machine could divide up its processing time among many users, giving them the illusion of having a (slow) computer to themselves.[8] Small programs would return results in a few seconds. This led to increasing interest in a system using time-sharing and a new language specifically for use by non-STEM students.[7]

Kemeny wrote the first version of BASIC. TheacronymBASIC comes from the name of an unpublished paper by Thomas Kurtz.[9] The new language was heavily patterned on FORTRAN II; statements were one-to-a-line, numbers were used to indicate the target of loops and branches, and many of the commands were similar or identical to Fortran. However, thesyntax was changed wherever it could be improved. For instance, the difficult to rememberDO loop was replaced by the much easier to rememberFORI=1TO10STEP2, and the line number used in the DO was instead indicated by theNEXT I.[a] Likewise, the crypticIF statement of Fortran, whose syntax matched a particular instruction of the machine on which it was originally written, became the simplerIFI=5THENGOTO100. These changes made the language much less idiosyncratic while still having an overall structure and feel similar to the original FORTRAN.[7]

The project received a $300,000 grant from theNational Science Foundation, which was used to purchase aGE-225 computer for processing, and a Datanet-30 realtime processor to handle theTeletype Model 33teleprinters used for input and output. A team of a dozen undergraduates worked on the project for about a year, writing both the DTSS system and the BASIC compiler.[7] The first version BASIC language was released on 1 May 1964.[10][11]

Initially, BASIC concentrated on supporting straightforward mathematical work, withmatrix arithmetic support from its initial implementation as a batch language, andcharacter string functionality being added by 1965. Usage in the university rapidly expanded, requiring the main CPU to be replaced by a GE-235,[7] and still later by a GE-635. By the early 1970s there were hundreds of terminals connected to the machines at Dartmouth, some of them remotely.

Wanting use of the language to become widespread, its designers made the compiler available free of charge. In the 1960s, software became a chargeable commodity; until then, it was provided without charge as a service with expensive computers, usually available only to lease. They also made it available to high schools in theHanover, New Hampshire, area and regionally throughout New England on Teletype Model 33 and Model 35 teleprinter terminals connected to Dartmouth via dial-up phone lines, and they put considerable effort into promoting the language. In the following years, as other dialects of BASIC appeared, Kemeny and Kurtz's original BASIC dialect became known asDartmouth BASIC.

New Hampshire recognized the accomplishment in 2019 when it erected a highway historical marker in Hanover describing the creation of "the first user-friendly programming language".[12]

Spread on time-sharing services

[edit]

The emergence of BASIC took place as part of a wider movement toward time-sharing systems. First conceptualized during the late 1950s, the idea became so dominant in the computer industry by the early 1960s that its proponents were speaking of a future in which users would "buy time on the computer much the same way that the average household buys power and water from utility companies".[13]

General Electric, having worked on the Dartmouth project, wrote their own underlying operating system and launched an online time-sharing system known as Mark I. It featured BASIC as one of its primary selling points. Other companies in the emerging field quickly followed suit;Tymshare introducedSUPER BASIC in 1968,CompuServe had a version on theDEC-10 at their launch in 1969, and by the early 1970s BASIC was largely universal on general-purposemainframe computers. EvenIBM eventually joined the club with the introduction of VS-BASIC in 1973.[14]

Although time-sharing services with BASIC were successful for a time, the widespread success predicted earlier was not to be. The emergence of minicomputers during the same period, and especially low-cost microcomputers in the mid-1970s, allowed anyone to purchase and run their own systems rather than buy online time which was typically billed at dollars per minute.[b][15]

Spread on minicomputers

[edit]
The HP 2000 system was designed to run time-shared BASIC as its primary task.

BASIC, by its very nature of being small, was naturally suited to porting to theminicomputer market, which was emerging at the same time as the time-sharing services. These machines had smallmain memory, perhaps as little as 4 KB in modern terminology,[c] and lacked high-performance storage likehard drives that make compilers practical. On these systems, BASIC was normally implemented as an interpreter rather than a compiler due to its lower requirement for working memory.[d]

A particularly important example wasHP Time-Shared BASIC, which, like the original Dartmouth system, used two computers working together to implement a time-sharing system. The first, a low-end machine in theHP 2100 series, was used to control user input and save and load their programs to tape or disk. The other, a high-end version of the same underlying machine, ran the programs and generated output. For a cost of about $100,000, one could own a machine capable of running between 16 and 32 users at the same time.[16] The system, bundled as the HP 2000, was the first mini platform to offer time-sharing and was an immediate runaway success, catapulting HP to become the third-largest vendor in the minicomputer space, behindDEC andData General (DG).[17]

DEC, the leader in the minicomputer space since the mid-1960s, had initially ignored BASIC. This was due to their work withRAND Corporation, who had purchased aPDP-6 to run theirJOSS language, which was conceptually very similar to BASIC.[18] This led DEC to introduce a smaller, cleaned up version of JOSS known asFOCAL, which they heavily promoted in the late 1960s. However, with timesharing systems widely offering BASIC, and all of their competition in the minicomputer space doing the same, DEC's customers were clamoring for BASIC. After management repeatedly ignored their pleas,David H. Ahl took it upon himself to buy a BASIC for thePDP-8, which was a major success in the education market. By the early 1970s, FOCAL and JOSS had been forgotten and BASIC had become almost universal in the minicomputer market.[19] DEC would go on to introduce their updated version,BASIC-PLUS, for use on theRSTS/E time-sharing operating system.

During this period a number of simpletext-based games were written in BASIC, most notably Mike Mayfield'sStar Trek. David Ahl collected these, some ported from FOCAL, and published them in an educational newsletter he compiled. He later collected a number of these into book form,101 BASIC Computer Games, published in 1973.[20] During the same period, Ahl was involved in the creation of a small computer for education use, an earlypersonal computer. When management refused to support the concept, Ahl left DEC in 1974 to found the seminal computer magazine,Creative Computing. The book remained popular, and was re-published on several occasions.[21]

Explosive growth: the home computer era

[edit]
See also:List of computers with on-board BASIC
Commodore BASIC v2.0 on theCommodore 64
MSX BASIC version 3.0
"Train Basic every day!"—reads a poster (bottom center) in a Russian school (c. 1985–86)

The introduction of the firstmicrocomputers in the mid-1970s was the start of explosive growth for BASIC. It had the advantage that it was fairly well known to the young designers and computer hobbyists who took an interest in microcomputers, many of whom had seen BASIC on minis or mainframes. DespiteDijkstra's famous judgment in 1975, "It is practically impossible to teach good programming to students that have had a prior exposure to BASIC: as potential programmers they are mentally mutilated beyond hope of regeneration",[22] BASIC was one of the few languages that was both high-level enough to be usable by those without training and small enough to fit into the microcomputers of the day, making it thede facto standard programming language on early microcomputers.

The firstmicrocomputer version of BASIC was co-written byBill Gates,Paul Allen andMonte Davidoff for their newly formed company, Micro-Soft.[23] This was released by MITS inpunch tape format for theAltair 8800 shortly after the machine itself,[24] immediately cementing BASIC as the primary language of early microcomputers. Members of theHomebrew Computer Club began circulating copies of the program, causing Gates to write hisOpen Letter to Hobbyists, complaining about this early example ofsoftware piracy.

Partially in response to Gates's letter, and partially to make an even smaller BASIC that would run usefully on 4 KB machines,[e]Bob Albrecht urgedDennis Allison to write their own variation of the language. How to design and implement a stripped-down version of aninterpreter for the BASIC language was covered in articles by Allison in the first three quarterly issues of thePeople's Computer Company newsletter published in 1975 and implementations with source code published inDr. Dobb's Journal of Tiny BASIC Calisthenics & Orthodontia: Running Light Without Overbyte. This led to a wide variety ofTiny BASICs with added features or other improvements, with versions from Tom Pittman andLi-Chen Wang becoming particularly well known.[25]

Micro-Soft, by this timeMicrosoft, ported their interpreter for theMOS 6502, which quickly become one of the most popular microprocessors of the 8-bit era. When new microcomputers began to appear, notably the "1977 trinity" of theTRS-80,Commodore PET andApple II, they either included a version of the MS code, or quickly introduced new models with it.Ohio Scientific's personal computers also joined this trend at that time. By 1978, MS BASIC was ade facto standard and practically everyhome computer of the 1980s included it inROM. Upon boot, a BASIC interpreter indirect mode was presented.

Commodore Business Machines includesCommodore BASIC, based on Microsoft BASIC. The Apple II and TRS-80 each have two versions of BASIC: a smaller introductory version with the initial releases of the machines and a Microsoft-based version introduced as interest in the platforms increased. As new companies entered the field, additional versions were added that subtly changed the BASIC family. TheAtari 8-bit computers use the 8 KBAtari BASIC which is not derived from Microsoft BASIC.Sinclair BASIC was introduced in 1980 with the SinclairZX80, and was later extended for the SinclairZX81 and the SinclairZX Spectrum. TheBBC publishedBBC BASIC, developed byAcorn Computers, incorporates extrastructured programming keywords and floating-point features.

As the popularity of BASIC grew in this period, computer magazines published complete source code in BASIC for video games, utilities, and other programs. Given BASIC's straightforward nature, it was a simple matter totype in the code from the magazine and execute the program. Different magazines were published featuring programs for specific computers, though some BASIC programs were considered universal and could be used in machines running any variant of BASIC (sometimes with minor adaptations). Many books of type-in programs were also available, and in particular, Ahl published versions of the original 101 BASIC games converted into the Microsoft dialect and published it fromCreative Computing asBASIC Computer Games. This book, and its sequels, provided hundreds of ready-to-go programs that could be easily converted to practically any BASIC-running platform.[20][26][27] The book reached the stores in 1978, just as thehome computer market was starting off, and it became the first million-selling computer book. Later packages, such as Learn to Program BASIC would also have gaming as an introductory focus. On the business-focusedCP/M computers which soon became widespread in small business environments,Microsoft BASIC (MBASIC) was one of the leading applications.[28]

In 1978, David Lien published the first edition ofThe BASIC Handbook: An Encyclopedia of the BASIC Computer Language, documenting keywords across over 78 different computers. By 1981, the second edition documented keywords from over 250 different computers, showcasing the explosive growth of the microcomputer era.[29]

IBM PC and compatibles

[edit]
IBM Cassette BASIC 1.10

When IBM was designing theIBM PC, they followed the paradigm of existing home computers in having a built-in BASIC interpreter. They sourced this from Microsoft –IBM Cassette BASIC – but Microsoft also produced several other versions of BASIC forMS-DOS/PC DOS includingIBM Disk BASIC (BASIC D),IBM BASICA (BASIC A),GW-BASIC (a BASICA-compatible version that did not need IBM's ROM)[30] andQBasic, all typically bundled with the machine. In addition they produced theMicrosoft QuickBASIC Compiler (1985) for power users and hobbyists, and the Microsoft BASIC Professional Development System (PDS) for professional programmers.Turbo Pascal-publisherBorland publishedTurbo Basic 1.0 in 1985 (successor versions were marketed under the namePowerBASIC).

OnUnix-like systems, specialized implementations were created such asXBasic and X11-Basic.[31] XBasic was ported toMicrosoft Windows asXBLite, andcross-platform variants such asSmallBasic,yabasic,Bywater BASIC,[32][33] nuBasic,[34] MyBasic,[35] Logic Basic,[36]Liberty BASIC, andwxBasic emerged.FutureBASIC andChipmunk Basic meanwhile targeted theApple Macintosh, while yab is a version ofyaBasic optimized forBeOS,ZETA andHaiku.[37]

These later variations introduced many extensions, such as improvedstring manipulation and graphics support, access to thefile system and additionaldata types. More important were the facilities forstructured programming, including additionalcontrol structures and propersubroutines supportinglocal variables.[38] The addition of anintegrated development environment (IDE) and electronic Help files made the products easier to work with and supported learning tools and school curriculum.

In 1989,Microsoft Press publishedLearn BASIC Now, a book-and-software system designed to teach BASIC programming to self-taught learners who were usingIBM-PC compatible systems and the Apple Macintosh.Learn BASIC Now included software disks containing the Microsoft QuickBASIC Interpreter and a programming tutorial written byMichael Halvorson and David Rygmyr. Learning systems likeLearn BASIC Now popularized structured BASIC and helped QuickBASIC reach an installed base of four million active users.[39]

By the late 1980s, many users were using pre-made applications written by others rather than learning programming themselves, and professional developers had a wide range of advanced languages available on small computers.C and laterC++ became the languages of choice for professional"shrink wrap" application development.[40][41]

A niche that BASIC continued to fill was for hobbyistvideo game development, asgame creation systems and readily availablegame engines were still in their infancy. TheAtari ST hadSTOS BASIC while theAmiga hadAMOS BASIC for this purpose. Microsoft first exhibited BASIC for game development withDONKEY.BAS forGW-BASIC, and laterGORILLA.BAS andNIBBLES.BAS forQuickBASIC.QBasic maintained an active game development community,[42][43] which helped later spawn theQB64 andFreeBASIC implementations.[44] An early example of this market is the QBasic software package Microsoft Game Shop (1990), a hobbyist-inspired release that included six "arcade-style" games that were easily customizable in QBasic.[45]

In 2013, a game written inQBasic and compiled withQB64 for modern computers entitledBlack Annex was released onSteam.[46][47]Blitz Basic,Dark Basic,SdlBasic, Super Game System Basic,[48] PlayBASIC,[49] CoolBasic,[50]AllegroBASIC,[51] ethosBASIC,[52]GLBasic andBasic4GL further filled this demand, right up to the modern RCBasic,[53] NaaLaa,[54]AppGameKit,[55] Monkey 2, and Cerberus-X.[56]

Visual Basic

[edit]
Main article:Visual Basic (classic)

In 1991, Microsoft introducedVisual Basic, an evolutionary development ofQuickBASIC. It included constructs from that language such as block-structured control statements, parameterized subroutines and optionalstatic typing as well asobject-oriented constructs from other languages such as "With" and "For Each". The language retained some compatibility with its predecessors, such as the Dim keyword for declarations, "Gosub"/Return statements and optional line numbers which could be used to locate errors. An important driver for the development of Visual Basic was as the newmacro language forMicrosoft Excel, aspreadsheet program. To the surprise of many at Microsoft who still initially marketed it as a language for hobbyists, the language came into widespread use for small custom business applications shortly after the release of VB version 3.0, which is widely considered the first relatively stable version. Microsoft also spun it off asVisual Basic for Applications andEmbedded Visual Basic.

While many advanced programmers still scoffed at its use, VB met the needs ofsmall businesses efficiently as by that time, computers running Windows 3.1 had become fast enough that many business-related processes could be completed "in the blink of an eye" even using a "slow" language, as long as large amounts of data were not involved. Many small business owners found they could create their own small, yet useful applications in a few evenings to meet their own specialized needs. Eventually, during the lengthy lifetime of VB3, knowledge of Visual Basic had become a marketable job skill. Microsoft also producedVBScript in 1996 andVisual Basic .NET in 2001. The latter has essentially the same power asC# andJava but with syntax that reflects the original Basic language, and also features some cross-platform capability through implementations such asMono-Basic.[57] TheIDE, with itsevent-drivenGUI builder, was also influential on otherrapid application development tools, most notablyBorland Software'sDelphi forObject Pascal and its own descendants such asLazarus.[58][59]

Mainstream support for the final version 6.0 of the original Visual Basic ended on March 31, 2005, followed by extended support in March 2008.[60] Owing to its persistent remaining popularity,[61] third-party attempts to further support it exist.[62] On February 2, 2017, Microsoft announced that development on VB.NET would no longer be in parallel with that of C#,[63] and on March 11, 2020, it was announced that evolution of the VB.NET language had also concluded.[64] Even so, the language was still supported.[65]

Three modern Basic variants:Mono Basic,OpenOffice.org Basic andGambas

Post-1990 versions and dialects

[edit]

Many other BASIC dialects have also sprung up since 1990, including theopen sourceQB64 andFreeBASIC, inspired by QBasic, and the Visual Basic-styledRapidQ,HBasic,Basic For Qt andGambas.[4] Modern commercial incarnations includePureBasic,PowerBASIC,Xojo,Monkey X andTrue BASIC (the direct successor to Dartmouth BASIC from a company controlled by Kurtz).

Several web-based simple BASIC interpreters also now exist, including Microsoft'sSmall Basic andGoogle's wwwBASIC.[66] A number of compilers also exist that convert BASIC intoJavaScript.[67] such asNS Basic.

A sample BASIC programme running underYABASIC for the SonyPS2

Building from earlier efforts such asMobile Basic,[68][69] many dialects are now available forsmartphones and tablets.

On game consoles, an application for theNintendo 3DS andNintendo DSi calledPetit Computer allows for programming in a slightly modified version of BASIC with DS button support. A version has also been released forNintendo Switch, which has also been supplied a version of the Fuze Code System,[70] a BASIC variant[71] first implemented as a customRaspberry Pi machine.[72] Previously BASIC was made available on consoles asFamily BASIC (for theNintendo Famicom) andPSXChipmunk Basic (for the originalPlayStation), whileyabasic was ported to thePlayStation 2 andFreeBASIC to the originalXbox.

Calculators

[edit]

Variants of BASIC are available on graphing and otherwiseprogrammable calculators made byTexas Instruments (TI-BASIC), HP (HP BASIC), Casio (Casio BASIC), and others.

Windows command-line

[edit]

QBasic, a version of MicrosoftQuickBASIC without the linker to make EXE files, is present in theWindows NT and DOS-Windows 95 streams of operating systems and can be obtained for more recent releases likeWindows 7 which do not have them. Prior to DOS 5, the Basic interpreter wasGW-Basic. QuickBasic is part of a series of three languages issued by Microsoft for the home and office power user and small-scale professional development; QuickC and QuickPascal are the other two. ForWindows 95 and 98, which do not have QBasic installed by default, they can be copied from the installation disc, which will have a set of directories for old and optional software; other missing commands like Exe2Bin and others are in these same directories.

Other

[edit]
BASIC came to some video game systems, such as the NintendoFamicom.

The various Microsoft, Lotus, and Corel office suites and related products are programmable with Visual Basic in one form or another, includingLotusScript, which is very similar to VBA 6. The Host Explorer terminal emulator uses WWB as a macro language; or more recently the programme and the suite in which it is contained is programmable in an in-house Basic variant known as Hummingbird Basic. The VBScript variant is used for programming web content, Outlook 97, Internet Explorer, and the Windows Script Host. WSH also has aVisual Basic for Applications (VBA) engine installed as the third of the default engines along with VBScript, JScript, and the numerous proprietary or open source engines which can be installed likePerlScript, a couple of Rexx-based engines, Python, Ruby, Tcl, Delphi, XLNT, PHP, and others; meaning that the two versions of Basic can be used along with the other mentioned languages, as well as LotusScript, in a WSF file, through the component object model, and other WSH and VBA constructions. VBScript is one of the languages that can be accessed by the 4Dos, 4NT, and Take Command enhanced shells. SaxBasic and WWB are also very similar to the Visual Basic line of Basic implementations. The pre-Office 97 macro language for Microsoft Word is known asWordBASIC. Excel 4 and 5 use Visual Basic itself as a macro language.Chipmunk Basic, an old-school interpreter similar to BASICs of the 1970s, is available forLinux,Microsoft Windows andmacOS.

Legacy

[edit]

The ubiquity of BASIC interpreters on personal computers was such that textbooks once included simple "Try It In BASIC" exercises that encouraged students to experiment with mathematical and computational concepts on classroom or home computers. Popular computer magazines of the day typically includedtype-in programs.

Futurist and sci-fi writerDavid Brin mourned the loss of ubiquitous BASIC in a 2006Salon article[73] as have others who first used computers during this era. In turn, the article prompted Microsoft to develop and releaseSmall Basic;[74] it also inspired similar projects likeBasic-256[75][76] and the web based Quite Basic.[77]Dartmouth held a 50th anniversary celebration for BASIC on 1 May 2014.[78] The pedagogical use of BASIC has been followed by other languages, such asPascal,Java and particularlyPython.[79]

Dartmouth College celebrated the 50th anniversary of the BASIC language with a day of events[80] on April 30, 2014. A short documentary film was produced for the event.[81]

Syntax

[edit]

Typical BASIC keywords

[edit]

Data manipulation

[edit]
LET
assigns a value (which may be the result of anexpression) to a variable. In most dialects of BASIC,LET is optional, and a line with no other identifiable keyword will assume the keyword to beLET.
DATA
holds a list of values which are assigned sequentially using the READ command.
READ
reads a value from aDATA statement and assigns it to a variable. An internal pointer keeps track of the lastDATA element that was read and moves it one position forward with eachREAD. Most dialects allow multiple variables as parameters, reading several values in a single operation.
RESTORE
resets the internal pointer to the firstDATA statement, allowing the program to beginREADing from the first value. Many dialects allow an optional line number or ordinal value to allow the pointer to be reset to a selected location.
DIM
Sets up an array.

Program flow control

[edit]
IF ... THEN ... {ELSE}
used to perform comparisons or make decisions. Early dialects only allowed a line number after theTHEN, but later versions allowed any valid statement to follow.ELSE was not widely supported, especially in earlier versions.
FOR ... TO ... {STEP} ... NEXT
repeat a section of code a given number of times. A variable that acts as a counter, the "index", is available within theloop.
WHILE ... WEND andREPEAT ... UNTIL
repeat a section of code while the specified condition is true. The condition may be evaluated before each iteration of the loop, or after. Both of these commands are found mostly in later dialects.
DO ... LOOP {WHILE} or{UNTIL}
repeat a section of code indefinitely or while/until the specified condition is true. The condition may be evaluated before each iteration of the loop, or after. Similar toWHILE, these keywords are mostly found in later dialects.
GOTO
jumps to a numbered or labelled line in the program. Most dialects also allowed the formGO TO.
GOSUB ... RETURN
jumps to a numbered or labelled line, executes the code it finds there until it reaches aRETURN command, on which it jumps back to the statement following theGOSUB, either after a colon, or on the next line. This is used to implementsubroutines.
ON ... GOTO/GOSUB
chooses where to jump based on the specified conditions. SeeSwitch statement for other forms.
DEF FN
a pair of keywords introduced in the early 1960s to define functions. The original BASIC functions were modelled on FORTRAN single-line functions. BASIC functions were one expression with variable arguments, rather thansubroutines, with a syntax on the model ofDEF FND(x) = x*x at the beginning of a program. Function names were originally restricted to FN, plus one letter,i.e., FNA, FNB ...

Input and output

[edit]
LIST
displays the full source code of the current program.
PRINT
displays a message on the screen or other output device.
INPUT
asks the user to enter the value of a variable. The statement may include a prompt message.
TAB
used withPRINT to set the position where the next character will be shown on the screen or printed on paper.AT is an alternative form.
SPC
prints out a number of space characters. Similar in concept toTAB but moves by a number of additional spaces from the current column rather than moving to a specified column.

Mathematical functions

[edit]
ABS
Absolute value
ATN
Arctangent (result inradians)
COS
Cosine (argument inradians)
EXP
Exponential function
INT
Integer part (typicallyfloor function)
LOG
Natural logarithm
RND
Random number generation
SIN
Sine (argument inradians)
SQR
Square root
TAN
Tangent (argument inradians)

Miscellaneous

[edit]
REM
holds a programmer's comment or REMark; often used to give a title to the program and to help identify the purpose of a given section of code.
USR ("User Serviceable Routine")
transfers program control to amachine language subroutine, usually entered as an alphanumericstring or in a list of DATA statements.
CALL
alternative form ofUSR found in some dialects. Does not require an artificial parameter to complete the function-like syntax ofUSR, and has a clearly defined method of calling different routines in memory.
TRON /TROFF
turns on display of each line number as it is run ("TRace ON"). This was useful fordebugging or correcting of problems in a program. TROFF turns it back off again.
ASM
some compilers such as Freebasic,[82] Purebasic,[83] and Powerbasic[84] also supportinline assembly language, allowing the programmer to intermix high-level and low-level code, typically prefixed with "ASM" or "!" statements.

Data types and variables

[edit]

Minimal versions of BASIC had only integer variables and one- or two-letter variable names, which minimized requirements of limited and expensive memory (RAM). More powerful versions had floating-point arithmetic, and variables could be labelled with names six or more characters long. There were some problems and restrictions in early implementations; for example, Applesoft BASIC allowed variable names to be several characters long, but only the first two were significant, thus it was possible to inadvertently write a program with variables "LOSS" and "LOAN", which would be treated as being the same; assigning a value to "LOAN" would silently overwrite the value intended as "LOSS". Keywords could not be used in variables in many early BASICs; "SCORE" would be interpreted as "SC" OR "E", where OR was a keyword.String variables are usually distinguished in many microcomputer dialects by having $ suffixed to their name as asigil, and values are often identified as strings by being delimited by "double quotation marks". Arrays in BASIC could contain integers, floating point or string variables.

Some dialects of BASIC supportedmatrices and matrix operations, which can be used to solve sets of simultaneous linear algebraic equations. These dialects would directly support matrix operations such as assignment, addition, multiplication (of compatible matrix types), and evaluation of a determinant. Many microcomputer BASICs did not support this data type; matrix operations were still possible, but had to be programmed explicitly on array elements.

Examples

[edit]
A simple game implemented in BASIC

Unstructured BASIC

[edit]

New BASIC programmers on a home computer might start with a simple program, perhaps using the language's PRINT statement to display a message on the screen; a well-known and often-replicated example isKernighan and Ritchie's"Hello, World!" program:

10PRINT"Hello, World!"20END

Aninfinite loop could be used to fill the display with the message:

10PRINT"Hello, World!"20GOTO10

Note that theEND statement is optional and has no action in most dialects of BASIC. It was not always included, as is the case in this example. This same program can be modified to print a fixed number of messages using the commonFOR...NEXT statement:

10LETN=1020FORI=1TON30PRINT"Hello, World!"40NEXTI

Most home computers BASIC versions, such asMSX BASIC andGW-BASIC, supported simple data types, loop cycles, and arrays. The following example is written for GW-BASIC, but will work in most versions of BASIC with minimal changes:

10INPUT"What is your name: ";U$20PRINT"Hello ";U$30INPUT"How many stars do you want: ";N40S$=""50FORI=1TON60S$=S$+"*"70NEXTI80PRINTS$90INPUT"Do you want more stars? ";A$100IFLEN(A$)=0THENGOTO90110A$=LEFT$(A$,1)120IFA$="Y"ORA$="y"THENGOTO30130PRINT"Goodbye ";U$140END

The resulting dialog might resemble:

What is your name: MikeHello MikeHow many stars do you want: 7*******Do you want more stars? yesHow many stars do you want: 3***Do you want more stars? noGoodbye Mike

The original Dartmouth Basic was unusual in having a matrix keyword, MAT.[f] Although not implemented by most later microprocessor derivatives, it is used in this example from the 1968 manual[85] which averages the numbers that are input:

5LETS=010MATINPUTV20LETN=NUM30IFN=0THEN9940FORI=1TON45LETS=S+V(I)50NEXTI60PRINTS/N70GOTO599END

Structured BASIC

[edit]

Second-generation BASICs (for example,VAX Basic,SuperBASIC,True BASIC,QuickBASIC,BBC BASIC,Pick BASIC,PowerBASIC,Liberty BASIC,QB64 and (arguably)COMAL) introduced a number of features into the language, primarily related to structured and procedure-oriented programming. Usually,line numbering is omitted from the language and replaced withlabels (forGOTO) andprocedures to encourage easier and more flexible design.[38] In addition keywords and structures to support repetition, selection and procedures with local variables were introduced.

The following example is in Microsoft QuickBASIC:

REM QuickBASIC exampleREM Forward declaration - allows the main code to call aREM    subroutine that is defined later in the source codeDECLARESUBPrintSomeStars(StarCount!)REM Main program followsINPUT"What is your name: ",UserName$PRINT"Hello ";UserName$DOINPUT"How many stars do you want: ",NumStarsCALLPrintSomeStars(NumStars)DOINPUT"Do you want more stars? ",Answer$LOOPUNTILAnswer$<>""Answer$=LEFT$(Answer$,1)LOOPWHILEUCASE$(Answer$)="Y"PRINT"Goodbye ";UserName$ENDREM subroutine definitionSUBPrintSomeStars(StarCount)REMThisprocedureusesalocalvariablecalledStars$Stars$=STRING$(StarCount,"*")PRINTStars$ENDSUB

Object-oriented BASIC

[edit]

Third-generation BASIC dialects such asVisual Basic,Xojo,Gambas,StarOffice Basic,BlitzMax andPureBasic introduced features to support object-oriented andevent-driven programming paradigm. Most built-in procedures and functions are now represented asmethods of standard objects rather thanoperators. Also, theoperating system became increasingly accessible to the BASIC language.

The following example is inVisual Basic .NET:

PublicModuleStarsProgramPrivateFunctionAsk(promptAsString)AsStringConsole.Write(prompt)ReturnConsole.ReadLine()EndFunctionPublicSubMain()DimuserName=Ask("What is your name: ")Console.WriteLine("Hello {0}",userName)DimanswerAsStringDoDimnumStars=CInt(Ask("How many stars do you want: "))DimstarsAsNewString("*"c,numStars)Console.WriteLine(stars)Doanswer=Ask("Do you want more stars? ")LoopUntilanswer<>""LoopWhileanswer.StartsWith("Y",StringComparison.OrdinalIgnoreCase)Console.WriteLine("Goodbye {0}",userName)EndSubEndModule

Standards

[edit]
  • ANSI/ISO/IEC/ECMA Standard for Minimal BASIC:
    • ANSI X3.60-1978 "For minimal BASIC"
    • ISO/IEC 6373:1984 "Data Processing—Programming Languages—Minimal BASIC"
    • ECMA-55 Minimal BASIC(withdrawn, similar to ANSI X3.60-1978)
  • ANSI/ISO/IEC/ECMA Standard for Full BASIC:
    • ANSI X3.113-1987 "Programming Languages Full BASIC"
    • INCITS/ISO/IEC 10279-1991 (R2005) "Information Technology – Programming Languages – Full BASIC"
    • ECMA-116 BASIC(withdrawn, similar to ANSI X3.113-1987)
  • ANSI/ISO/IEC Addendum Defining Modules:
    • ANSI X3.113 Interpretations-1992 "BASIC Technical Information Bulletin # 1 Interpretations of ANSI 03.113-1987"
    • ISO/IEC 10279:1991/ Amd 1:1994 "Modules and Single Character Input Enhancement"

Compilers and interpreters

[edit]
This section is an excerpt fromList of compilers § BASIC compilers.[edit]

This list isincomplete; you can help byadding missing items.(June 2016)
CompilerAuthorWorking stateWindowsUnix-likeOther OSsLicense typeStandard conformance
Minimal BASICFull BASIC
AppGameKitThe Game CreatorsCurrentYesYesNoProprietary??
BASIC-PLUS-2Digital Equipment CorporationDiscontinuedNo?RSTS/E,RSX-11MProprietary??
B4XErel UzielCurrentYesYes (Android,iOS)Yes (JVM)NoNo
BBC BASIC for SDL 2.0Richard T. RussellCurrentYesYes (Linux,macOS,Android)Yes (Raspberry Pi OS)NoNo
BlitzMaxBlitz ResearchDiscontinuedYesYes (Linux,macOS)NoNoNo
DarkBASICThe Game CreatorsInactiveYesNoNoNoNo
ECMA-55 Minimal BASIC compiler[86]John Gatewood HamCurrentNoLinuxNoYesNo
FreeBASICFreeBASIC Development TeamCurrentYesYesDOS,FreeBSD,LinuxPartial[87][unreliable source?]No
FutureBASICBrilor SoftwareCurrentNomacOSClassic Mac OSProprietaryPartialNo
GambasBenoît MinisiniCurrentNoYesNoNoNo
GFA BASICFrank OstrowskiAbandonedYesNoAmiga,Atari ST,DOSProprietaryNoNo
MercuryRemObjectsCurrentYesYes (Linux,macOS,Android,iOS)Yes (WebAssembly)ProprietaryNoNo
PowerBASIC (formerly Turbo Basic)PowerBASIC, Inc.InactiveYesNoDOSProprietary??
PureBasicFantaisie SoftwareCurrentYesYesYesProprietaryNoNo
QB64GalleonCurrentYesYesYesPartialNo
QuickBASICMicrosoftDiscontinuedNoNoDOSProprietaryPartialNo
Tandem BASICTandem ComputersHistoricNoNoGuardian, NonStop Kernel,NonStop OSProprietaryNoNo
True BASICTrue BASICCurrentYesNoNoProprietaryYesPartial[88]
twinBASIC[89]Wayne PhillipsCurrentYesNoNoProprietaryNoNo
VSI BASIC for OpenVMSVMS Software, Inc.CurrentNoNoOpenVMSProprietaryNoNo
Xojo (formerly REALbasic)Xojo Inc. (formerly Real Software)CurrentYesYesYesProprietaryNoNo
This section is an excerpt fromList of compilers § BASIC interpreters.[edit]
This list isincomplete; you can help byadding missing items.(December 2010)
InterpreterAuthorWindowsUnix-likeOther OSsLicense type
BASIC-PLUSDigital Equipment CorporationNoNoRSTS/EProprietary
BBC BASIC for SDL 2.0Richard T. RussellYesYes (Linux,macOS,Android,iOS)Raspberry Pi OS,Web browser
Bywater BASIC (bwBASIC)Ted CampbellNoYes?
Liberty BASICShoptalk SystemsYesNoNoProprietary
GW-BASICMicrosoftNoNoMS-DOSProprietary
QBasicMicrosoftNoNoMS-DOSProprietary
Chipmunk BasicRonald H. Nicholson, Jr.YesYesYesFreeware
TI BASIC (TI 99/4A)Texas InstrumentsNoNoTI-99/4AProprietary
TI Extended BASICTexas InstrumentsNoNoTI-99/4AProprietary
MiniBasicMalcolm McLeanYesYesYes
Rocky Mountain BASIC[Trans Era]YesNoHP 9000Proprietary
BasMichael HaardtNoYesNo
YabasicMarc-Oliver IhmYesYesHaiku
SmallBASICSmallBASICYesYesAndroid,macOS
SuperBASICJan JonesNoNoSinclair QLProprietary
thinBasicthinBasicYesNoNoProprietary
PC-BASICRob HagemansYesYesmacOS
Level I BASICSteve LeiningerNoNoTRS-80 ROMProprietary
Level II BASICMicrosoftNoNoTRSDOS,NewDos/80, MultiDOS, DosPlus, LDOSProprietary
Level III BASICMicrosoftNoNoTRSDOS,NewDos/80, MultiDOS, DosPlus, LDOSProprietary
VAX BASICDigital Equipment CorporationNoNoVAX/VMSProprietary

See also

[edit]

Notes

[edit]
  1. ^Fortran's DO had acontinue for this purpose, but still required the line number to be entered.
  2. ^Tymshare charged aboutUS$10 per hour (equivalent to $81 in 2024) for accessing their systems.
  3. ^Widely regarded as the first "true" mini, the PDP-8's 12-bit memory space allowed 4,096 address of 12-bits each, or 6,144 bytes.
  4. ^Interpreters are ultimately similar to compilers in the tasks they perform, converting source code to machine code, but differ in when they perform it. Compilers convert the entire program at once and output a separate runnable program. Interpreters generally convert only a single line at a time (or even just a portion of it) and then immediately release that code once the line has completed running. This means they require only enough memory to run a single line, and do not require some form of high-performance secondary memory like a hard drive.
  5. ^Microsoft BASIC left 780 bytes free for user program code and variable values on a 4K machine, and that was running a cut-down version lacking string variables and other functionality.
  6. ^From version 3 onwards.

References

[edit]
  1. ^Kemeny, John G.; Kurtz, Thomas E. (1963).Basic: a manual for BASIC, the elementary algebraic language designed for use with the Dartmouth Time Sharing System(PDF) (1st ed.). Hanover, N.H.: Dartmouth College Computation Center.Archived(PDF) from the original on October 9, 2022.
  2. ^Ramel, David (February 12, 2019)."VB.NET Popularity Still Rising".Visual Studio Magazine. RetrievedMarch 28, 2023.
  3. ^Swersky, David (January 25, 2023)."40 most popular programming languages 2023: When and how to use them".Raygun. RetrievedMarch 25, 2023.
  4. ^abProven, Liam (March 28, 2023)."Nostalgic for VB? BASIC is anything but dead".The Register. RetrievedSeptember 27, 2023.
  5. ^Boss, Chris (November 15, 2022)."BASIC is Not Dead. Time to Erase the Myths about Basic".Code Project. RetrievedJanuary 31, 2024.
  6. ^"High Math at Hanover".Time. February 23, 1959.
  7. ^abcdefTime 2014.
  8. ^Rankin, Joy Lisi (2018),A People's History of Computing in the United States, Cambridge, Massachusetts: Harvard University Press,ISBN 9780674970977, p. 23
  9. ^"BASIC".Jargon File. RetrievedJune 13, 2017.
  10. ^"Thomas E. Kurtz – History of Computer Programming Languages".cis-alumni.org. RetrievedJune 13, 2017.
  11. ^Alfred, Randy (January 5, 2008)."May 1, 1964: First Basic Program Runs".Wired. RetrievedJune 13, 2017.
  12. ^Brooks, David (11 June 2019)."Finally, a historical marker that talks about something important".Concord Monitor. Archived fromthe original on 11 June 2019. Retrieved11 August 2019.
  13. ^Bauer, W. F.,Computer design from the programmer's viewpointArchived July 23, 2016, at theWayback Machine (Eastern Joint Computer Conference, December 1958) One of the first descriptions of computer time-sharing.
  14. ^"IBM VS the World: That's How It Is".Computerworld. December 5, 1973.
  15. ^Bourne, Charles; Hahn, Trudi Bellardo (August 2003).A History of Online Information Services, 1963–1976. MIT Press. p. 387.ISBN 9780262261753.
  16. ^"2000 Timeshare System".
  17. ^"Passing the 10-year mark".MEASURE Magazine. Hewlett Packard. October 1976.
  18. ^Marks, Shirley (December 1971).The JOSS Years: Reflections on an experiment(PDF) (Technical report). Rand.Archived(PDF) from the original on October 9, 2022.
  19. ^Savetz, Kevin (April 2013)."Dave Ahl and Betsy Ahl" (Interview).
  20. ^abAhl, David H. (1973).101 Basic computer games. Morristown, N.J.: Creative Computing Press.OCLC 896774158.
  21. ^Ahl, David H. (May 11, 1981)."Computer Games".InfoWorld. Vol. 3, no. 9. p. 44.ISSN 0199-6649.
  22. ^Dijkstra, Edsger W. (June 18, 1975)."How do we tell truths that might hurt"(PDF).Selected Writings on Computing: A Personal Perspective.Springer-Verlag (published 1982). pp. 129–131.ISBN 978-0387906522.OCLC 693424350.Archived(PDF) from the original on October 9, 2022.
  23. ^Johnson, Phil (January 21, 2015)."The source code behind Microsoft BASIC for 6502 comes to light".Computerworld. RetrievedOctober 24, 2022.
  24. ^"We have a BASIC".New Mexico Museum of Natural History and Science. Archived fromthe original on November 30, 2012. RetrievedApril 18, 2007.
  25. ^Pittman, Tom."you had to pay $5 up front to get it…".www.ittybittycomputers.com. RetrievedJune 14, 2017.
  26. ^Ahl, David H. (1979).More basic computer games. Morristown: Creative Computing Press.ISBN 978-0894801372.OCLC 839377789.
  27. ^Ahl, David H. (1984).Big computer games. Morris Plains, N.J.: Creative Computing Press.ISBN 978-0916688400.OCLC 872675092.
  28. ^"Osborne 1".oldcomputers.net. RetrievedJune 14, 2017.
  29. ^Lien, David (1981).The BASIC Handbook (Second ed.). San Diego, CA: Compusoft Publishing. p. inside cover.ISBN 0-932760-00-7.
  30. ^"Back to BASICs".peyre.sqweebs.com. Archived fromthe original on October 26, 2009. RetrievedFebruary 25, 2023.
  31. ^Perr, John (January 1, 2003)."BASIC programming with Unix".LinuxFocus. RetrievedSeptember 26, 2023.
  32. ^"bwBASIC: The Bywater BASIC Interpreter".OSS Blog. August 25, 2018. RetrievedSeptember 30, 2023.
  33. ^Hall, Jim (June 23, 2021)."Program on FreeDOS with Bywater BASIC".Opensource.com. RetrievedSeptember 30, 2023.
  34. ^Calderone, Antonia."Why nuBASIC". RetrievedSeptember 30, 2023.
  35. ^Song, Liu Xue (October 12, 2003)."MyBasic - A Custom-BASIC language interpreter written in C++".Code Project. RetrievedSeptember 30, 2023.
  36. ^"LOGIC BASIC - Free programming language". RetrievedOctober 7, 2023.
  37. ^Albrecht, Christian (October 2, 2022)."yab Beginners tutorial".BeSly - BeOS, Haiku & Zeta. Translation by Luc Schrijvers (Begasus). RetrievedFebruary 25, 2024.
  38. ^ab"Differences Between GW-BASIC and QBasic". May 12, 2003. Archived fromthe original on October 19, 2013. RetrievedJune 28, 2008.
  39. ^Halvorson, Michael J. (2020).Code Nation: Personal Computing and the Learn to Program Movement in America. New York, NY: ACM Books. p. 146.ISBN 978-1-4503-7757-7.
  40. ^Pravin, Jain (2011).The Class Of Java. Pearson Education India.ISBN 9788131755440.
  41. ^"GNE: the C programming language".fysh.org. RetrievedJune 14, 2017.During the 1980s, C compilers spread widely, and C became an extremely popular language.
  42. ^Dance, Michael."Easy to Make Qbasic Games".Techwalla. RetrievedSeptember 30, 2023.
  43. ^"QBasic Games Directory".Phatcode. RetrievedSeptember 30, 2023.
  44. ^"FreeBASIC Games Directory".FreeBASIC. RetrievedSeptember 30, 2023.
  45. ^Halvorson, Michael J. (2020).Code Nation: Personal Computing and the Learn to Program Movement in America. New York, NY: ACM Books. pp. 153–156.ISBN 978-1-4503-7757-7.
  46. ^Cocilova, Alex (April 16, 2013)."Black Annex is the best QBASIC game you've ever seen".PC World. RetrievedSeptember 30, 2023.
  47. ^Serrels, Mark (June 24, 2013)."The Australian Who Built A Video Game Using QBASIC".Kotaku. Archived fromthe original on June 24, 2013. RetrievedSeptember 30, 2023.
  48. ^"Super Game System Basic".IndieDB. November 21, 2017. RetrievedSeptember 30, 2023.
  49. ^"PlayBasic".itch.io. RetrievedSeptember 30, 2023.
  50. ^"CoolBasic".IndieDB. December 6, 2005. RetrievedSeptember 30, 2023.
  51. ^"AllegroBASIC Homepage".AllegroBASIC. Archived fromthe original on November 15, 2018. RetrievedOctober 7, 2023.
  52. ^"Ethos Game Basic 1.3".shareApp. RetrievedSeptember 30, 2023.
  53. ^"RC Basic".ModDB. August 18, 2015. RetrievedSeptember 30, 2023.
  54. ^Fercalo, Andrei (August 8, 2014)."NaaLaa".Softpedia. RetrievedOctober 1, 2023.
  55. ^"A Closer Look At AppGameKit 2".GameFromScratch. June 12, 2015. RetrievedSeptember 30, 2023.
  56. ^"Cerberus X 2018-08-10 Released".GameFromScratch. August 10, 2018. RetrievedSeptember 30, 2023.
  57. ^Clarke, Gavin (February 21, 2007)."Linux breakthrough for Visual Basic developers".The Register. RetrievedOctober 1, 2023.
  58. ^Anderson, Tim (February 14, 2020)."25 years of Delphi and no Oracle in sight: Not a Visual Basic killer but hard to kill".The Register. RetrievedMarch 25, 2023.Enter Borland Delphi, which combined Object Pascal with a VB-like visual form builder. Object Pascal was Borland's own language, with full support for inheritance. It is case-insensitive and not much harder than VB for coding, once you get used to typing begin and end a lot (loosely equivalent to curly braces in C). Unlike VB, it sensibly has different operators for assignment (:=) and comparison (=).
  59. ^Speed, Richard (May 6, 2022)."RAD Basic – the Visual Basic 7 that never was – releases third alpha".The Register. RetrievedMarch 26, 2023.Alternatively, one can relive the days of the whole BASIC/Pascal rivalry with Delphi-compatible Lazarus.
  60. ^"Product Family Life Cycle Guidelines for Visual Basic 6.0". Msdn2.microsoft.com. March 31, 2005. RetrievedJune 16, 2009.
  61. ^Ramel, David (July 7, 2020)."Popularity Index: Classic Visual Basic Hangs In There".Visual Studio Magazine. RetrievedMarch 28, 2023.
  62. ^Ramel, David (February 28, 2020)."Visual Basic Resurgence? Project Seeks to 'Bring the VBE into This Century!'".Visual Studio Magazine. RetrievedMarch 28, 2023.
  63. ^Domingo, Michael (June 13, 2017)."Viva, Visual Basic! Or, Does VB Have a Future?".Visual Studio Magazine. RetrievedMarch 26, 2023.
  64. ^Ramel, David (March 12, 2020)."Microsoft: 'We Do Not Plan to Evolve Visual Basic as a Language'".Visual Studio Magazine. RetrievedMarch 26, 2023.
  65. ^Ramel, David (February 8, 2023)."Microsoft Reaffirms Fate of Visual Basic".Visual Studio Magazine. RetrievedMarch 25, 2023.
  66. ^Williams, Al (September 17, 2018)."It's The Web, Basically".Hackaday. RetrievedSeptember 28, 2023.
  67. ^Veteanu, Marian (February 14, 2017)."JavaScript compilers. Part II: Languages that compile to JavaScript".Code Avenger.
  68. ^"Java – What programming languages target J2ME".iTecNote. RetrievedSeptember 30, 2023.Now I've heard of other languages which supposedly make possible development without recourse to Java, languages like CellularBASIC (which looks a bit like QBASIC) and Hecl (which seems to be based on Tcl).
  69. ^Tello, Guillaume (December 15, 2007)."LG KS 360". Archived fromthe original on October 28, 2010. RetrievedSeptember 30, 2023.After some research on the Net, I came across this site about the CellularBASIC. It is a complete BASIC interpreter written in JAVA.
  70. ^Miller, Paul (June 19, 2017)."Fuze Code Studio will let kids use the Switch to code their own Switch games".The Verge. RetrievedSeptember 30, 2023.
  71. ^Porter, Matt (December 18, 2015)."Now kids can get back to BASIC with Fuze".The Gadget Man. RetrievedSeptember 30, 2023.
  72. ^Bedford, Mike (October 21, 2015)."FUZE powered by Raspberry Pi V2 review".The Gadget Man. RetrievedSeptember 30, 2023.
  73. ^Brin, David (September 14, 2006)."Why Johnny Can't Code".Salon. Archived fromthe original on September 18, 2013. RetrievedJune 19, 2017.
  74. ^"Small Basic".Microsoft Developer Network. Archived fromthe original on March 17, 2014. RetrievedJune 19, 2017.
  75. ^"BASIC-256 homepage".Check out "Why Johnny Can't Code," the article that inspired BASIC-256.
  76. ^Ratliff Sr., Gary L. (October 2008)."An Alphabet of Computer Languages: BASIC".PCLinuxOS Magazine. RetrievedFebruary 25, 2024.
  77. ^Koster, Raph (November 21, 2006)."Quite BASIC — Web BASIC programming". RetrievedFebruary 25, 2024.
  78. ^"Dartmouth plans celebration for 50th anniversary of BASIC computer language".New Hampshire Union Leader. April 28, 2014. Archived fromthe original on June 20, 2017. RetrievedJune 14, 2017.
  79. ^Wood, Lamont (June 23, 2011)."How are students learning programming in a post-Basic world?".Computerworld. RetrievedFebruary 26, 2024.
  80. ^"BASIC at 50 – Event Schedule".Dartmouth College. RetrievedJune 14, 2017.
  81. ^"BASIC at 50".Dartmouth College. RetrievedJune 14, 2017.
  82. ^"KeyPgAsm".FreeBasic Wiki. RetrievedAugust 2, 2017.
  83. ^"Inline x86 ASM".Pure Basic. RetrievedAugust 2, 2017.
  84. ^"Using assembly-language in your code".Power Basic. Archived fromthe original on August 2, 2017. RetrievedAugust 2, 2017.
  85. ^Kemeny, John G.; Kurtz, Thomas E. (January 1968).Basic: a manual for BASIC, the elementary algebraic language designed for use with the Dartmouth Time Sharing System(PDF) (4th ed.). Hanover, N.H.: Dartmouth College Computation Center. p. 53.Archived(PDF) from the original on January 3, 2014.
  86. ^Ham, John Gatewood (2014)."An ECMA-55 Minimal BASIC Compiler for x86-64 Linux®".Computers.3 (3):69–116.doi:10.3390/computers3030069.S2CID 40383760.
  87. ^angros47 (July 29, 2013)."ANSI Basic: is FreeBasic standard-compliant?".FreeBasic.Archived from the original on September 28, 2023.
  88. ^Bantchev, Boyko (2008)."The True 'True BASIC'".Institute of Mathematics and Informatics.Archived from the original on March 13, 2011.
  89. ^Phillips, Wayne (2024)."twinBASIC Homepage". twinBASIC.

General references

[edit]

External links

[edit]
Wikibooks has a book on the topic of:Programming:BASIC
Dialects of theBASIC programming language (list)
Classic
Microsoft
Texas Instruments
Hewlett-Packard
Locomotive Software
Microcomputers
Minicomputers
Time-sharing computers
Other
Extenders
Procedure-
oriented
Proprietary
Free and
open source
Withobject
extensions
Proprietary
Free and
open source
RAD
designers
Proprietary
Free and
open source
Defunct
National
Other
Retrieved from "https://en.wikipedia.org/w/index.php?title=BASIC&oldid=1281032849"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2025 Movatter.jp