Re: scope problem
- Posted by DerekParnell (admin) Sep 05, 2008
- 936 views
Are you saying that you have a file like this ...
-- a.e -- global constant A = 1
And another file like this ...
-- myapp.ex -- include a.e sequence s s = {1,2,3} ? s[A]
But when you run myapp.ex it fails because 'A' is not seen?
Can you reduce your example to the smallest possible that still fails?