if more than one of the modules in the list of the require (..) parameter contains the same procedure name as in the example:

Code:
public mylib = require (“mylib1”, “mylib2”) //, “mylib3”… etc

value = mylib.myvar
value = mylib.getMyVar ()
after assigning a value, what will be the value of "value"? Which procedure is running? The order in which the parameter is listed? alphabetical order?