Skip to content

Instantly share code, notes, and snippets.

@KirkSteffke
Last active September 7, 2015 15:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KirkSteffke/d281ddde8d5c3650880f to your computer and use it in GitHub Desktop.
Save KirkSteffke/d281ddde8d5c3650880f to your computer and use it in GitHub Desktop.
Base code for the fifth CRM Science Lab Coat Challenge
// Start with this
public static string Magic8BallResponse() {
// Response to return
string response;
// Possible answers
string answer1 = 'Definitely!';
string answer2 = 'Absolutely!';
string answer3 = 'SaaSy will be like your shadow today. Unless you\'re inside.';
string answer4 = '42';
string answer5 = 'At the expo, 12:42 PM, sharp.';
string answer6 = 'No way, Jose!';
string answer7 = 'Probably not, SaaSy\'s San Francisco\'s best Hide \'n Seek player!';
// Your code here!
// Return response
return response;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment