Update README.org
@@ -40,7 +40,7 @@ func main() {
for _, sheet := range xlFile.Sheets {
for _, row := range sheet.Rows {
for _, cell := range row.Cells {
- text := cell.String()
+ text, _ := cell.String()
fmt.Printf("%s\n", text)
}