From 673612eb6b49089f12daa059d2918f64bd5bafc2 Mon Sep 17 00:00:00 2001 From: Yonatan Higgsmith Date: Wed, 2 May 2018 11:55:14 +0100 Subject: [PATCH] fixed output from wrong sum to correct in the example provided in the MyAssembly.fs and file1.fsx x = 10 y = 40 so 10 + 2 x 40 = 90. not 60. Changed line 86 from 60 to 90 --- docs/fsharp/tutorials/fsharp-interactive/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/fsharp/tutorials/fsharp-interactive/index.md b/docs/fsharp/tutorials/fsharp-interactive/index.md index 9bc6ca43f1bf0..f3252da381a86 100644 --- a/docs/fsharp/tutorials/fsharp-interactive/index.md +++ b/docs/fsharp/tutorials/fsharp-interactive/index.md @@ -83,7 +83,7 @@ The output is as follows: Command line arguments: file1.fsx test -60 +90 ``` ## Related Topics