Skip to content

Instantly share code, notes, and snippets.

@janellbaxter
Last active February 19, 2017 21:11
Show Gist options
  • Save janellbaxter/9f30317dffc401ae2edb377b352c8f55 to your computer and use it in GitHub Desktop.
Save janellbaxter/9f30317dffc401ae2edb377b352c8f55 to your computer and use it in GitHub Desktop.
2.1 Output to Console Window Programming is Fun: C# Adventure Game (Learn C#) Chapter Two
/*
* Example code from Programming is Fun: C# Adventure Game
* Learn C# for beginners
* http://programmingisfun.com/learn/c-sharp-adventure-game
*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Adventure
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Adventure Game!");
Console.ReadKey();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment