2016-12-16 08:52:16 -08:00
|
|
|
//
|
|
|
|
// main.swift
|
|
|
|
// Sibil
|
|
|
|
//
|
|
|
|
// Created by Eryn Wells on 12/16/16.
|
|
|
|
// Copyright © 2016 Eryn Wells. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
|
2016-12-16 10:10:13 -08:00
|
|
|
let l = Lexer(input: "(())")
|
|
|
|
for t in l {
|
|
|
|
print(t)
|
|
|
|
}
|
2016-12-16 08:52:16 -08:00
|
|
|
|