@@ -12,26 +12,26 @@ The code samples are organized in the following projects:
1212- ** Exercises** : placeholders for you to do the exercises, compile and run them;
1313 and compare to the provided solutions
1414- ** LaYumba.Functional** : a functional library that we develop throughout the book
15- - ** LaYumba.Functional.Data** : very simple functional data structures discussed in Chapter 9
15+ - ** LaYumba.Functional.Data** : very simple functional data structures discussed in Chapter 9
1616- ** LaYumba.Functional.Tests** : also illustrative of topics explained in the book, and
1717 useful to better understand the constructs in the library
1818- ** Boc.Domain** : an example of using F# for domain objects
1919
20- ** Note:** you are welcome to reference ` LaYumba.Functional ` from your projects
20+ ** Note:** you are welcome to reference ` LaYumba.Functional ` from your projects
2121via [ NuGet] ( https://www.nuget.org/packages/LaYumba.Functional ) , and submit
22- PRs with improvements, but the main intent of this library is pedagogical.
22+ PRs with improvements, but the main intent of this library is pedagogical.
2323For a more fully-fledged functional library, consider [ LanguageExt] ( https://github.com/louthy/language-ext )
2424
2525## Working with the code samples
2626
27- The code samples use .NET Standard 1.6 and .NET Core 1.1 , and should compile and run on all major OS's
27+ The code samples use .NET Standard 1.6 and .NET Core 2.0 , and should compile and run on all major OS's
2828via the ` dotnet ` CLI.
2929
3030### Prerequisites
3131
32- - [ .NET Core 1.1.1 SDK] ( https://www.microsoft.com/net/download/core )
32+ - [ .NET Core 2.0.3 SDK] ( https://www.microsoft.com/net/download/core )
3333
34- To check this is available, type ` dotnet --version ` at the command prompt, and you should get ` 1 .0.1 ` or greater
34+ To check this is available, type ` dotnet --version ` at the command prompt, and you should get ` 2 .0.3 ` or greater
3535
3636### One-time setup
3737
@@ -62,7 +62,7 @@ $ cd Examples
6262$ dotnet run Greetings
6363```
6464
65- | Section | Command
65+ | Section | Command
6666|---:| ---
6767| 7.1 | ` dotnet run Greetings `
6868
@@ -75,14 +75,14 @@ Throughout the book, I encourage readers to try things out in the [REPL](https:/
7575- On Mono, use the ` csharp ` command
7676- There are several other REPLs available, some even run in the browser
7777
78- You'll often need to import ` LaYumba.Functional ` in the REPL. In C# Interactive,
78+ You'll often need to import ` LaYumba.Functional ` in the REPL. In C# Interactive,
7979this can be done like so:
8080
8181``` csharp
8282#r "functional-csharp-code\LaYumba.Functional\bin\Debug\netstandard1.6\LaYumba.Functional.dll"
8383```
8484
85- The path above may not work for you, in which case use an absolute path to the dll,
85+ The path above may not work for you, in which case use an absolute path to the dll,
8686or type ` Directory.GetCurrentDirectory() ` into the REPL to see what to use as a base for a relative path.
8787
8888Next, add these imports:
0 commit comments