mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
20 lines
233 B
Markdown
20 lines
233 B
Markdown
## Reader example
|
|
|
|
```v
|
|
import encoding.csv
|
|
|
|
data := 'x,y\na,b,c\n'
|
|
mut parser := csv.new_reader(data)
|
|
// read each line
|
|
for {
|
|
items := parser.read() or { break }
|
|
println(items)
|
|
}
|
|
```
|
|
|
|
It prints:
|
|
```
|
|
['x', 'y']
|
|
['a', 'b', 'c']
|
|
```
|