[Seed7-users] Array
Interpreter and compiler for the Seed7 programming language.
Brought to you by:
thomas_mertes
From: Renato L. <re...@gm...> - 2012-11-10 23:56:34
|
Hi there, i have a little question: var array integer: arr1 is 5 times 3; - this generates an array 1 based with 5 items var array integer: arr1 is [0] (1,2,3,4,5) - this generates an array 0 based with 5 items var array integer: arr1 is [0] 5 times 3; - this returns an error... how can i create (if possible) an array 0 based with "times" sintax? Best regards ---- Renato |