Created
May 25, 2014 01:19
-
-
Save nicholasf/b8ebf7f0c8e341d4344a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
iex(5)> Code.require_file('spoonbot.exs') | |
** (FunctionClauseError) no function clause matching in Code.require_file/2 | |
(elixir) lib/code.ex:287: Code.require_file('spoonbot.exs', nil) | |
iex(5)> Code.require_file('spoonbot.exs', '.') | |
** (FunctionClauseError) no function clause matching in Code.require_file/2 | |
(elixir) lib/code.ex:287: Code.require_file('spoonbot.exs', '.') | |
iex(5)> System.cmd('ls . | grep spoonbot.exs') | |
'spoonbot.exs\n' | |
iex(6)> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment