Fixed CSV example

This commit is contained in:
Leon Mika 2025-01-19 15:59:51 +11:00
parent 84702267df
commit 23833f7490

View file

@ -22,8 +22,8 @@ The return value will be nil.
``` ```
csv:each-record "winds.csv" { |row hdr| csv:each-record "winds.csv" { |row hdr|
set name $row.($hdr.name) set name $row.($hdr.name)
set bearing $row.($hdr.bearing) set baring $row.($hdr.baring)
echo "Wind $name has bearing $bearing" echo "Wind $name has baring $baring"
} }
``` ```