Skip to content

Instantly share code, notes, and snippets.

@wildBcat
Created June 19, 2018 22:32
Show Gist options
  • Save wildBcat/d53d29e6d155c2ca68c36451a5bf1b57 to your computer and use it in GitHub Desktop.
Save wildBcat/d53d29e6d155c2ca68c36451a5bf1b57 to your computer and use it in GitHub Desktop.
The stinkin' code
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp4
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("What is the name of your band?");
string bandName = Console.ReadLine();
AnnounceBand(bandName);
}
void AnnounceBand(string bandName)
{
Console.WriteLine("Welcome " + bandName + " to the stage!");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment