Hi I'm new to Julia and stuck on the following........ I have a text file called "g.txt" with the following saved to it ........ 1,2,3,4,5,6,7
I was wondering how to get this data into a list eg [1,2,3,4,5,6,7] ... as
I can then use this in a graph.
For now I have ...
g = open("g.txt","r")
print(readall(g))
close(g)
Not sure where to go from here??
Regards
P
