I'm trying to figure out *exactly* how this works.

So... i have three trivial scripts:

$ cat a1.exs
IO.puts "This is a1"

$ cat a2.exs
IO.puts "This is a2"

$ cat duh.exs
require MyMod
IO.puts "duh" 

<https://elixir-lang.slack.com/archives/general/p1465845075000984>I'm 
curious as to why these commands are different: 
<https://elixir-lang.slack.com/archives/general/p1465845080000985> 
$ elixir -r *.exs
This is a1
This is a2

$ elixir -r "*.exs"
This is a1
This is a2
duh

Note that in the first case, duh.exs is apparently not run.

Thanks,
Hal

-- 
You received this message because you are subscribed to the Google Groups 
"elixir-lang-talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elixir-lang-talk/40dd9747-65dd-4881-9caf-a8b39c0a8811%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to