This commit is contained in:
Sanchime 2022-07-06 21:15:51 +08:00
parent b9aee659d0
commit 5d17da7cea
4 changed files with 16 additions and 1 deletions

7
Monads/FreeMonad.fs Normal file
View File

@ -0,0 +1,7 @@
namespace Sanchime.Monads
module Free =
type Free =
| Free
| Pure

5
Monads/Test.fs Normal file
View File

@ -0,0 +1,5 @@
namespace Sanchime.Monads
module Test =
let test = 0

View File

@ -7,4 +7,5 @@ open Sanchime.Algrithm.Sort.Merge
open Sanchime.Algrithm.Sort.Select
qsort |> test
// qsort |> test

View File

@ -10,6 +10,8 @@
<Compile Include="Algrithms/Sorts/InsertSort.fs" />
<Compile Include="Algrithms/Sorts/BubbleSort.fs" />
<Compile Include="Algrithms/Sorts/Test.fs" />
<Compile Include="Monads/FreeMonad.fs" />
<Compile Include="Monads/Test.fs" />
<Compile Include="Program.fs" />
</ItemGroup>
</Project>