mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
docs_ci: check all md files except thirdparty (#6855)
This commit is contained in:
19
vlib/encoding/csv/README.md
Normal file
19
vlib/encoding/csv/README.md
Normal file
@ -0,0 +1,19 @@
|
||||
## 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']
|
||||
```
|
Reference in New Issue
Block a user