Como ler um arquivo .CSV com netlogo?

Atualmente, estou começando no netlogo, então tenho alguns problemas que não achei como resolvê-los. Eu tenho que ler um arquivo .csv enorme, tenho esse código na web:

to openFile
file-open "testeCsv.csv"
set csv file-read-line
set csv word csv ","  ; add comma for loop termination 

let mylist []  ; list of values 
  while [not empty? csv] 
  [
    let $x position "," csv 
    let $item substring csv 0 $x  ; extract item 
    carefully [set $item read-from-string $item][] ; convert if number 
    set mylist lput $item mylist  ; append to list 
    set csv substring csv ($x + 1) length csv  ; remove item and comma 
    set fileList mylist
  ] 
  set fileList mylist
  show fileList
end

Este arquivo contém esta linha: "1; 0; 0; 65; 0; 2; 45; 0; -0,018961934" A saída desse código é: "1 18961934" Ajuda: /

questionAnswers(2)

yourAnswerToTheQuestion