[julia-users] Re: Hello World.jl

2015-12-04 Thread Benjamin Deonovic
Or from your terminal command line you can type julia path/to/hello.jl and it will execute was is in the file. This is the first topic that is discussed in the manual which you should look over): http://docs.julialang.org/en/release-0.4/manual/getting-started/ On Thursday, December 3, 2015

[julia-users] Re: Hello World.jl

2015-12-04 Thread Benjamin Deonovic
You can store your data wherever you want. In particular for the package you noted (ExcelReaders) you can do things like: using ExcelReaders f = openxl("/path/to/my/file/Filename.xlsx")

[julia-users] Re: Hello World.jl

2015-12-04 Thread Mark Kugel
Ha ok, thank you much ;)