|
Author |
Topic: lingo compare error (Read 337 times) |
|
REAS
|
lingo compare error
« on: Oct 24th, 2003, 5:39am » |
|
error in the reference found by lia: processing: int[] a = {5, 10, 11}; a[0] = 12; // Reassign lingo: a = [5,10,11] a[0] = 12 -- Reassign in lingo the first item in a list is accessed by myList[1] instead of myList[0] ---> a[1] = 12 -- Reassign
|
|
|
|
|