Skip to content

Commit

Permalink
add return computed
Browse files Browse the repository at this point in the history
  • Loading branch information
aseduto committed Sep 24, 2018
1 parent 20254ab commit 78d9b4b
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,15 @@ static int Main(string[] args)
{
int n = args.Length;

if(n > 10)
if(n > 5)
return 9;

if (3 < n)
{
Console.WriteLine("3 Input");
return args.Length;
}

Func<int> lambda = (() =>
{
Console.WriteLine("LAMDA!");
Expand Down

0 comments on commit 78d9b4b

Please sign in to comment.