I'm trying a recursive program in ACSLogo (a mac version of Logo) and want to return a list of 2 integers (basically and X coordinate and a Y coordinate). I cannot figure out how to get it to return 2 values. It does one no problem.
Also, when you create a list and you wish to refer back to it to extract a value in a particular index, it seems like you have to paste the list as is and you cannot refer to it by an assigned name.
Example:
Item 4 [1 1 2 3 5 8 13 21]
You cannot name that list "fibb" and refer to it like this X + fibb item 4