Created
March 25, 2014 06:45
-
-
Save chitoku-k/9756341 to your computer and use it in GitHub Desktop.
お誕生日おめでとう!
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Linq; | |
public class HappyBirthday | |
{ | |
public static void ShowHappyBirthday() | |
{ | |
Console.WriteLine(string.Concat("Happy Birthday!".Select(x => new String(x, 3)))); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
HHHaaappppppyyy BBBiiirrrttthhhdddaaayyy!!! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment