I am trying to import a txt file read the first line and get that printed to the screen to just test it. But it won't work and says that there is no file in the directory, but my .jl file and .txt file are in the same folder and I have check 10 times over that they are spelt the same. This was what I tried.
f =open("alphabet.txt");
a=readline(f)
println(a)
close(f)
Sorry for the basic nature of the question, but I have checked all the Julia documentation, but can't find an answer