Skip to content

Instantly share code, notes, and snippets.

View glowcap's full-sized avatar
🍛
お腹がすいた

Daymein Gregorio glowcap

🍛
お腹がすいた
View GitHub Profile
@glowcap
glowcap / CVS.swift
Created March 29, 2016 14:21
CVS Parser
//
// CSV
//
import Foundation
public class CSV {
public var headers: [String] = []
public var rows: [Dictionary<String, String>] = []
public var columns = Dictionary<String, [String]>()