Advertisement
IvanITD

1 - Console Creatures

Jan 17th, 2024
1,010
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.49 KB | Source Code | 0 0
  1. namespace Console_Creatures
  2. {
  3.     internal class Program
  4.     {
  5.         static void Main(string[] args)
  6.         {
  7.             /* In this code we will create an art design, named "Spookler", with the coding language C#. We will use different symbols  in order to create the needed art!*/
  8.  
  9.             Console.WriteLine("  .-.");
  10.             Console.WriteLine(" (o o)");
  11.             Console.WriteLine(" | O |");
  12.             Console.WriteLine(" |   |");
  13.             Console.WriteLine(" '~~~'");
  14.             Console.WriteLine("Spookler");
  15.  
  16.             /* Created space in order to separate the two designs that are created! */
  17.  
  18.             Console.WriteLine();
  19.  
  20.             /* This is my second created art named "Cowboy Man".*/
  21.  
  22.             Console.WriteLine("c_     ___");
  23.             Console.WriteLine("   \\\\__|__|__");
  24.             Console.WriteLine("     \\( o_o)");
  25.             Console.WriteLine("       > ~  >");
  26.             Console.WriteLine("      /   / \\\\");
  27.             Console.WriteLine("     /    /  \\\\");
  28.             Console.WriteLine("     \\   )   c/");
  29.             Console.WriteLine("     /  /");
  30.             Console.WriteLine("    /  /|");
  31.             Console.WriteLine("   (  ( \\");
  32.             Console.WriteLine("   |  |  \\");
  33.             Console.WriteLine("   | / \\  )");
  34.             Console.WriteLine("   | |  ) |");
  35.             Console.WriteLine("  /  )(_/");
  36.             Console.WriteLine(" (_ /");
  37.             Console.WriteLine("CowBoy Man");
  38.         }
  39.     }
  40. }
  41.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement