Skip to content

Commit 85d2b25

Browse files
committed
wip
1 parent 3fc9b77 commit 85d2b25

File tree

9 files changed

+831
-393
lines changed

9 files changed

+831
-393
lines changed

ExpressionDebugger.Console/Program.cs

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,12 @@
22
using System;
33
using System.Linq.Expressions;
44

5-
namespace ExpressionDebugger.Console {
6-
class Program {
7-
static void Main(string[] args) {
5+
namespace ExpressionDebugger.Console
6+
{
7+
class Program
8+
{
9+
static void Main(string[] args)
10+
{
811
var p1 = Expression.Parameter(typeof(int));
912
var p2 = Expression.Parameter(typeof(int));
1013
var body = Expression.Add(p1, p2);

0 commit comments

Comments
 (0)