Skip to content

Commit 11bc13a

Browse files
patstewtonyroberts
authored andcommitted
Update README.md
1 parent 2b1d825 commit 11bc13a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ static void Main(string[] args)
1818
dynamic sin = np.sin;
1919
Console.WriteLine(np.cos(np.pi*2));
2020
Console.WriteLine(sin(5));
21-
Console.WriteLine(np.cos(5) + sin(5));
21+
double c = np.cos(5) + sin(5);
22+
Console.WriteLine(c);
2223
dynamic a = np.array(new List<float> { 1, 2, 3 };
2324
dynamic b = np.array(new List<float> { 6, 5, 4 }, Py.kw("dtype", np.int32));
2425
Console.WriteLine(a.dtype);

0 commit comments

Comments
 (0)