Post Reply 
im somewhst bsffled again
11-26-2015, 07:17 PM
Post: #1
im somewhst bsffled again
In a single file we have


local loc_list := {1,2,3};
export glob_list := {5,6,7};

add2list (s)
begin
loc_list := prepend (loc_list,s) ; //fails, cant see local
glob_list := prepemd (glob_list); //works
end;

Also, the following works

add2list2 (s)
begin
local l2:= loc_list;
loc_list := prepend (l2,s);
end;

Should i not be baffled and confused?

I work with android Prime only for now on my
Galaxy Tab Pro/Note 2
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
im somewhst bsffled again - ji3m - 11-26-2015 07:17 PM
RE: im somewhst bsffled again - ji3m - 11-26-2015, 08:02 PM
RE: im somewhst bsffled again - Han - 11-26-2015, 08:32 PM



User(s) browsing this thread: 1 Guest(s)