update initial example

This commit is contained in:
ado 2021-01-03 21:09:33 +01:00
parent 2ea6e201d0
commit c04a9fcad9

View File

@ -11,7 +11,7 @@ Lets say we have a csv file containing students in a given format (NAME,AGE,GRAD
```
$ cat students.csv
James Bailey,65,2.5
Brian S. Wolfe,40,11.9
Brian S. Wolfe,40,1.9
Nathan Fielder,37,Really good grades
Bill (Heath) Gates,65,3.3
```
@ -41,7 +41,7 @@ And if we compile and execute the program we get the following output:
```
$ ./a.out
James Bailey 65 2.5
Brian S. Wolfe 40 11.9
Brian S. Wolfe 40 1.9
Bill (Heath) Gates 65 3.3
```
# Features