Skip to content

Commit

Permalink
Merge pull request #310 from rithika-hebbar/master
Browse files Browse the repository at this point in the history
Happy Birthday in C#
  • Loading branch information
vinitshahdeo authored Oct 2, 2021
2 parents 522bf50 + 1259782 commit 84afa24
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions examples/BirthdayWish.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
using System;

public class BirthdayWish
{
public static void Main()
{
string wish = "HAPPY BIRTHDAY!";
string cake = "┌iii┐٩(º▽º๑)۶";

char[] wishArray = wish.ToCharArray();

foreach(char c in wishArray){
Console.Write(c);
}
Console.Write("\n"+cake);
}
}

0 comments on commit 84afa24

Please sign in to comment.