On Saturday, October 3, 2015 at 5:14:57 PM UTC-4, Peter Simon wrote:
>
> I tried modifying LOAD_CACHE_PATH, but it is a non-exported variable of 
> Base.  Even after importing it, I am not allowed to modify it.  
>

It is an array, so it is mutable.  You can modify its elements by push! and 
similar functions.  You just can't assign it to a completely new array 
because it is "const" (i.e. it is effectively a constant pointer to an 
array, not a pointer to a constant array, in C parlance).

Reply via email to