Skip to content

Latest commit

 

History

History
70 lines (60 loc) · 2.14 KB

FILL.org

File metadata and controls

70 lines (60 loc) · 2.14 KB

Top | Up (Array) | < Previous (PAGE NAME) | Next (PAGE NAME) >

FILL

Fills an array with copies of the same value.

Syntax

FILL array[], value [, start% [, leng​th%]]
parameterdescription
array[]array to fill
valuevalue to fill the array with
start%position to start filling the array; if omitted, 0
length%length of the region to fill; if omitted, the length of the array minus start%

Examples

DIM A[10]
FILL A,3,0,5 'first 5 items in A are now 3

Version Information

3.2.0

Added 1

References

1 SmileBoom “Additions/Changes in Ver. 3.2.0 (June 17, 2015)” http://smilebasic.com/en/debug/archive/


Top | Up (Array) | < Previous (PAGE NAME) | Next (PAGE NAME) >