How to read data from file in Google Go when my data file looks like this:
SomeString 200.0 2
OtherString 100.6 9
OneMoreString 550.8 1
(String, double and integer). I tried bufio.readLine
and bufio.readString
but these are reading whole line, while i need seperated variables.