15 lines
209 B
Swift
15 lines
209 B
Swift
//
|
|
// main.swift
|
|
// Sibil
|
|
//
|
|
// Created by Eryn Wells on 12/16/16.
|
|
// Copyright © 2016 Eryn Wells. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
let l = Lexer(input: "((abc))")
|
|
for t in l {
|
|
print(t)
|
|
}
|
|
|