Version 0.6
I want to use julias -e(val) option with environment variables. How can I do that?
Example:
y=10
echo $y
julia -e 'println($y)'
the echo works, as expected. But the julia line does not work. ERROR: unsupported or misplaced expression $
. Now how do I make this work?
I tried it with ENV["y"] but it does not find the variable.