Skip to content

Commit 9b84b8c

Browse files
lwsantydennwc
authored andcommitted
add benchmark fixtures
Add benchmark fixtures that contain implementation of popular algorithms + large file Signed-off-by: lwsanty <[email protected]>
1 parent f5cf1a4 commit 9b84b8c

File tree

64 files changed

+1452642
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+1452642
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
using System;
2+
3+
class Program
4+
{
5+
static Func<dynamic, dynamic> Foo(dynamic n)
6+
{
7+
return i => n += i;
8+
}
9+
10+
static void Main(string[] args)
11+
{
12+
var x = Foo(1);
13+
x(5);
14+
Foo(3);
15+
Console.WriteLine(x(2.3));
16+
}
17+
}

0 commit comments

Comments
 (0)