svoid test_ExtendedCSVParser { new ExtendedCSVParser parser; parser.csv = [[ a,b,c value,"quot "" ed"," multiple ""lines"" wow", x ]]; parser.onValueFound = v -> print("value found: " + v); parser.onEndOfRecord = () -> print("End of record"); parser.run(); }