Skip to content

Instantly share code, notes, and snippets.

@michaelnull
michaelnull / Day 3.cs
Created July 2, 2015 02:15
Michael Null's Pig Dice game
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication3
{
class Program
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace day_2_tictactoe_take_2
{
class Program
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace day_2_tictactoe_take_2
{
class Program
{
@michaelnull
michaelnull / tic tac toe day 2
Created July 1, 2015 01:39
Tic Tac Toe, day 2
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace day_2_tictactoe_take_2
{
class Program
{
// Assign "Hello World" to a variable message
String Message = "Hello, my friends";
Console.WriteLine(Message);
Console.Read();
// Assign a different string to a different variable
String Variable = "this is the first version";
Console.WriteLine(Variable);
Variable = "this is the second version";
Console.WriteLine(Variable);
Console.Read();