Fixed CSV example

This commit is contained in:
Leon Mika 2025-01-19 15:59:51 +11:00
parent 42d5a89471
commit 742b5e96c3

View file

@ -22,8 +22,8 @@ The return value will be nil.
```
csv:each-record "winds.csv" { |row hdr|
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"
}
```