Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SulingXu’s Joke #135

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
3 changes: 2 additions & 1 deletion DadJokes/JokeStore.swift
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,13 @@ struct JokeStore {

/// we NEED more jokes here!!!
private var storage: [Joke] = [
Joke(description: "You should be careful with functions that return a value...", punchline: "In fact, I would just a void them."),
Copy link
Author

Choose a reason for hiding this comment

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

LOL, my sides 👍

Joke(description: "Why don't programmers like being outside?", punchline: "Because there's too many bugs"),
Joke(description: "Why don't bachelors like Git?", punchline: "Because they are afraid to commit."),
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!")
]
Expand Down