33 lines
997 B
C#
33 lines
997 B
C#
using System;
|
|
|
|
namespace drawhorse
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
Console.WriteLine(@"Sample app with <3 from horsy
|
|
|\ /|
|
|
___| \,,/_/
|
|
---__/ \/ \
|
|
__--/ (D) \
|
|
_ -/ (_ \
|
|
// / \_ / -\
|
|
__-------_____--___--/ / \_ O o)
|
|
/ / \__/
|
|
/ /
|
|
|| ) \_/\
|
|
|| / _ / |
|
|
| | /--______ ___\ /\ :
|
|
| / __- - _/ ------ | | \ \
|
|
| - - / | | \ )
|
|
| | - | | ) | |
|
|
| | | | | | | |
|
|
| | < | | | |_/
|
|
< | /__\ < \
|
|
/__\ /___\");
|
|
Console.ReadLine();
|
|
}
|
|
}
|
|
}
|