Skip to content

Instantly share code, notes, and snippets.

View sstigler's full-sized avatar

Sam Stigler sstigler

  • Thousand Oaks, CA, USA
View GitHub Profile
@sstigler
sstigler / CommandLineGuessingGame
Created June 5, 2014 17:45
Guessing game written in Swift.
import Foundation
class GuessingGame: NSObject
{
let name: String?
init(name: String)
{
self.name = name
super.init()