Skip to content

Commit

Permalink
Join declaration and assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
mina-asham committed May 17, 2015
1 parent 24c155e commit 1ef9517
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions algs4/stdlib/Out.cs
Original file line number Diff line number Diff line change
Expand Up @@ -260,10 +260,8 @@ public void PrintF(string format, params object[] args)
/// <param name="args">Main arguments</param>
public static void RunMain(string[] args)
{
Out output;

// write to stdout
output = new Out();
Out output = new Out();
Console.WriteLine("Test 1");
output.Close();

Expand Down

0 comments on commit 1ef9517

Please sign in to comment.