Skip to content

Instantly share code, notes, and snippets.

@the-teacher
Created May 20, 2015 16:06
Show Gist options
  • Save the-teacher/94cbdf8a2f969e787c1a to your computer and use it in GitHub Desktop.
Save the-teacher/94cbdf8a2f969e787c1a to your computer and use it in GitHub Desktop.
Swift Lesson 1
class Recipe {
var name: String?
init(name:String?) {
self.name = name
}
}
for index in 1...15 {
var recipe = Recipe(name: "Test Recipe \(index)")
recipes.append([recipe])
println(recipe.name!)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment