Microsoft as company was created on one product: BASIC interpreter.
BASIC still exists
BASIC (Beginners' All-purpose Symbolic Instruction Code)[1] is a family of general-purpose, high-level programming languages designed for ease of use. The original version was created by John G. Kemeny and Thomas E. Kurtz at Dartmouth College in 1963
Like QuickBASIC, but unlike earlier versions of Microsoft BASIC, QBasic is a structured programming language, supporting constructs such as subroutines.[2] Line numbers, a concept often associated with BASIC, are supported for compatibility, but are not considered good form, having been replaced by descriptive line labels.
Tiny BASIC is a family of dialects of the BASIC programming language that can fit into 4 or fewer KBs of memory.
davidtorosyan/ti-js: TI-Basic interpreter written in JavaScript.
JavaScript BASIC Interpreter (online)
10 cls20 let h="Hello "
30 let w="World!"
40 for n=1 to 10 step 1
50 gosub 100
60 next n
70 end
100 print h;
110 print w
120 return
FreeBASIC is a free/open source (GPL), BASIC compiler for Microsoft Windows, DOS and Linux.
primeimages/freebasic - Docker Image | Docker Hub
10 REM FACTORIAL 20 REM COMMODORE BASIC 2.0 30 INPUT "N=";N: GOSUB 100 40 PRINT N;"! =";F 50 GOTO 30 100 REM FACTORIAL CALC USING SIMPLE LOOP 110 F = 1 120 FOR I=1 TO N 130 F = F*I 140 NEXT 150 RETURN
No comments:
Post a Comment