mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-22 15:16:33 -08:00
21 lines
454 B
C#
21 lines
454 B
C#
using System;
|
|
|
|
namespace Buzzword
|
|
{
|
|
class Program
|
|
{
|
|
static void Header()
|
|
{
|
|
Console.WriteLine("Buzzword generator".PadLeft(26));
|
|
Console.WriteLine("Creating Computing Morristown, New Jersey".PadLeft(15));
|
|
Console.WriteLine();
|
|
Console.WriteLine();
|
|
Console.WriteLine();
|
|
}
|
|
static void Main(string[] args)
|
|
{
|
|
Header();
|
|
}
|
|
}
|
|
}
|