The Small Scripting Language
By Thiadmer Riemersma, October 01, 1999
Small, described as "Small-C" without the "C," is a typeless, 32-bit extension language with a C-like syntax that features fast execution speed, stability, simplicity, and a small footprint.
Oct99: The Small Scripting Language
<b>(a)</b>
new a[10] = { 1, ... };
<b>(b)</b>
new b[10] = { 1, 2, ... };
<b>(c)</b>
new d[10] = { 10, 9, ... };
Example 5: (a) Filling all 10 elements of the array with 1s; (b) filling with the range 1 to 10; (c) filling with the range 10 to 1.
Copyright © 1999, Dr. Dobb's Journal