Re: [julia-users] problem when include code in Julia

2016-11-17 Thread David P. Sanders
How did you save the .jl file? It seems your editor added the extra .txt suffix. You might want to try a different editor that is designed for editing code, e.g. Atom.

Re: [julia-users] problem when include code in Julia

2016-11-17 Thread Monica Deng
Thanks a lot. after doing "readdir()", I found that I must add ".txt" to the file. but that's not normal right? As I can see, the textbook just do with extension ".jl" but the problem is solved after all.

Re: [julia-users] problem when include code in Julia

2016-11-17 Thread Mauro
After your cd(...) command run: julia> readdir() It will give a list of files in the directory. Check that your file is there. If not then that is rather strange. On Thu, 2016-11-17 at 11:50, Monica Deng wrote: > I kept meeting this problem when try to include codes

[julia-users] problem when include code in Julia

2016-11-17 Thread Monica Deng
I kept meeting this problem when try to include codes in Julia: I'm pretty sure