Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System.Reflection;
- namespace microsoft.botsay;
- internal class Program
- {
- static void Main(string[] args)
- {
- if (args.Length == 0)
- {
- var versionString = Assembly.GetEntryAssembly()?
- .GetCustomAttribute<AssemblyInformationalVersionAttribute>()?
- .InformationalVersion
- .ToString();
- Console.WriteLine($"botsay v{versionString}");
- Console.WriteLine("-------------");
- Console.WriteLine("\nUsage:");
- Console.WriteLine(" botsay <message>");
- return;
- }
- ShowBot(string.Join(' ', args));
- }
- static void ShowBot(string message)
- {
- string bot = $"\n {message}";
- bot += @"
- __________________
- \
- \
- ....
- ....'
- ....
- ..........
- .............'..'..
- ................'..'.....
- .......'..........'..'..'....
- ........'..........'..'..'.....
- .'....'..'..........'..'.......'.
- .'..................'... ......
- . ......'......... .....
- . _ __ ......
- .. # ## ......
- .... . .......
- ...... ....... ............
- ................ ......................
- ........................'................
- ......................'..'...... .......
- .........................'..'..... .......
- ........ ..'.............'..'.... ..........
- ..'..'... ...............'....... ..........
- ...'...... ...... .......... ...... .......
- ........... ....... ........ ......
- ....... '...'.'. '.'.'.' ....
- ....... .....'.. ..'.....
- .. .......... ..'........
- ............ ..............
- ............. '..............
- ...........'.. .'.'............
- ............... .'.'.............
- .............'.. ..'..'...........
- ............... .'..............
- ......... ..............
- .....
- ";
- Console.WriteLine(bot);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment