Untitled diff

Created Diff never expires
3 removals
Lines
Total
Removed
Words
Total
Removed
To continue using this feature, upgrade to
Diffchecker logo
Diffchecker Pro
26 lines
4 additions
Lines
Total
Added
Words
Total
Added
To continue using this feature, upgrade to
Diffchecker logo
Diffchecker Pro
27 lines
using System;
using System;


class Program
class Program
{{
{
static void Main(string[] args)
static void Main(string[] args)
{{
{{
PrintStory();
PrintStory();
}}
}}


static void PrintStory()
static void PrintStory()
{{
{{
const string story = "One sunny afternoon, Super Mario and Sonic decided to take a break from their adventures. They headed to their favorite restaurant for a delicious pizza. As they sat down, Mario exclaimed, 'I can't wait to try the new mushroom pizza! It's supposed to be amazing!'
const string story = @"One sunny afternoon, Super Mario and Sonic decided to take a break from their adventures. They headed to their favorite restaurant for a delicious pizza. As they sat down, Mario exclaimed, 'I can't wait to try the new mushroom pizza! It's supposed to be amazing!'


Sonic replied with a grin, 'I’m more excited about the speed pepperoni! You know, it gives you a boost in the game!'
Sonic replied with a grin, 'I’m more excited about the speed pepperoni! You know, it gives you a boost in the game!'


They laughed and started discussing their latest games. Mario shared, 'In my new game, I’ve got to rescue Princess Peach again, but this time, Bowser has a new trick up his sleeve!'
They laughed and started discussing their latest games. Mario shared, 'In my new game, I’ve got to rescue Princess Peach again, but this time, Bowser has a new trick up his sleeve!'


Sonic nodded, 'That sounds intense! In my latest adventure, I’m racing against time to stop Dr. Eggman from taking over the world again!'
Sonic nodded, 'That sounds intense! In my latest adventure, I’m racing against time to stop Dr. Eggman from taking over the world again!'


As their pizzas arrived, they raised their slices in a toast, 'To friendship and great games!'
As their pizzas arrived, they raised their slices in a toast, 'To friendship and great games!'


And with that, they enjoyed their meal, sharing stories and laughter, ready for whatever adventures awaited them next!";
And with that, they enjoyed their meal, sharing stories and laughter, ready for whatever adventures awaited them next!";


Console.WriteLine(story);
Console.WriteLine(story);
}}
}}
}}
}