Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions DadJokes/JokeStore.swift
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,10 @@ struct JokeStore {
Joke(description: "What does the father play with his son?", punchline: "Try Catch"),
Joke(description: "You should be careful with functions that return a value...",
punchline: "In fact, I would just a void them."),
Joke(description: "Why do developers do Java?", punchline: "Because they don't C#")
Joke(description: "Why do developers do Java?", punchline: "Because they don't C#"),
Joke(description: "Why did the programmer cross the road?", punchline: "To Git to the other side"),
Joke(description: "What did the atom say to the angry mass?", punchline: "What's the matter with you!")
Joke(description: "What did the atom say to the angry mass?", punchline: "What's the matter with you!"),
Joke(description: "Why don't you publish the teaser of your app?", punchline: "Because I only deal with Integer :P")
Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am little bit afraid about the quality of my joke ... ;)

]
}

Expand Down