Category:Palo Alto Tiny BASIC

Revision as of 00:35, 17 November 2022 by Christophoro S (talk | contribs) (Created page with "{{language|Palo Alto Tiny BASIC |tags=tinybasic}} {{implementation|BASIC}} '''Palo Alto Tiny BASIC''' is one of the most popular of the many versions of Tiny BASIC. It was developed in 1975 by Li-Chen Wang. ==Features== Palo Alto Tiny BASIC has some features that distinguish it from other Tiny BASICs: * The <code>FOR</code>...<code>NEXT</code> loop. Like in Microsoft BASIC, the upper and lower bounds of the loop are set on loop entry, and did not change during...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Language
Palo Alto Tiny BASIC
This programming language may be used to instruct a computer to perform a task.
Lang tag(s): tinybasic
See Also:


Listed below are all of the tasks on Rosetta Code which have been solved using Palo Alto Tiny BASIC.
Palo Alto Tiny BASIC is an implementation of BASIC. Other implementations of BASIC.

Palo Alto Tiny BASIC is one of the most popular of the many versions of Tiny BASIC. It was developed in 1975 by Li-Chen Wang.

Features

Palo Alto Tiny BASIC has some features that distinguish it from other Tiny BASICs:

  • The FOR...NEXT loop. Like in Microsoft BASIC, the upper and lower bounds of the loop are set on loop entry, and did not change during the loop, so if one of the bounds is based on a variable expression, changing the variable do not change the bound. The STEP modifier is optional.
  • The ability to place several statements on a single line. Palo Alto Tiny BASIC uses the semicolon ; to separate statements, rather than the colon : common in BASICs.
  • A single numeric one-dimensional array, with the variable name @.
  • The statement STOP in addition to END.
  • The use of # for not-equals in comparisons, as opposed to <>.

Implementations

Palo Alto Tiny BASIC was adapted for many implementations:

External links