Files
legacy/example/drawhorse/drawhorse/Program.cs
2022-01-25 18:41:08 +02:00

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();
}
}
}