Skip to content

Instantly share code, notes, and snippets.

@yurii-litvinov
Created April 14, 2016 20:12
Show Gist options
  • Save yurii-litvinov/a4f3de8f27b3cc388e661ceac39ffeb5 to your computer and use it in GitHub Desktop.
Save yurii-litvinov/a4f3de8f27b3cc388e661ceac39ffeb5 to your computer and use it in GitHub Desktop.
code review example 4 - node.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ParseTree
{
public interface Node
{
double Calculate();
void Print();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment