Im trying to read some files containing strings and combine them using join()
My problem is that Julia prints the contents of those files to console after every variable assignment and it takes very long time because files are several megabytes long.
How can i stop it from printing the result of every variable assignment and just let it process things in the background?
# Reading data
f = open("desktop\\Verbs_data\\popular.txt", "r")
pop_verbs = readlines(f)
close(f)
f = open("desktop\\Verbs_data\\douxieme.txt", "r")
second_gr = readlines(f)
close(f)
f = open("desktop\\Verbs_data\\troisieme.txt", "r")
third_gr = readlines(f)
close(f)
f = open("desktop\\Verbs_data\\premier.txt", "r")
first_gr = readlines(f)
close(f)
# Proces data
allverbs = join([first_gr, second_gr, third_gr], " ")