SmallBASIC: Difference between revisions

From Rosetta Code
Content added Content deleted
(created)
 
(changed MSSB link to skip redirect)
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{implementation|BASIC}}
'''SmallBASIC''' (not to be confused with [[Microsoft Small Basic]]) is a [[:Category:BASIC|BASIC]] interpreter, originally intended for use on the [[wp:Palm (PDA)|Palm line of PDAs]], and currently available for [[:Category:POSIX|POSIX]]-compliant systems (including [[Linux]], [[Unix]], [[Mac OS|Mac OSX]], and [[BSD]]), [[Windows]], [[DOS]], and several lesser-known systems.

'''SmallBASIC''' (not to be confused with [[:Category:Microsoft Small Basic|Microsoft Small Basic]]) is a [[:Category:BASIC|BASIC]] interpreter, originally intended for use on the [[wp:Palm (PDA)|Palm line of PDAs]], and currently available for [[:Category:POSIX|POSIX]]-compliant systems (including [[Linux]], [[Unix]], [[Mac OS|Mac OSX]], and [[BSD]]), [[Windows]], [[DOS]], and several lesser-known systems.


SmallBASIC is fairly similar to [[QuickBASIC#QBasic|QBasic]], although many keywords are different (for example, <code>DO</code> works significantly different in the two languages).
SmallBASIC is fairly similar to [[QuickBASIC#QBasic|QBasic]], although many keywords are different (for example, <code>DO</code> works significantly different in the two languages).


==See also==
==See also==
*[http://smallbasic.sourceforge.net/ SmallBASIC homepage]
*[http://smallbasic.github.io/ SmallBASIC homepage]
*[[wp:SmallBASIC|SmallBASIC on Wikipedia]]
*[[wp:SmallBASIC|SmallBASIC on Wikipedia]]
*[http://smallbasic.sourceforge.net/?q=node/201 SmallBASIC Language reference]
*[http://smallbasic.github.io/pages/reference.html SmallBASIC Language reference]

Latest revision as of 18:57, 30 May 2018

SmallBASIC is an implementation of BASIC. Other implementations of BASIC.

SmallBASIC (not to be confused with Microsoft Small Basic) is a BASIC interpreter, originally intended for use on the Palm line of PDAs, and currently available for POSIX-compliant systems (including Linux, Unix, Mac OSX, and BSD), Windows, DOS, and several lesser-known systems.

SmallBASIC is fairly similar to QBasic, although many keywords are different (for example, DO works significantly different in the two languages).

See also