3 changed files with 22 additions and 0 deletions
@ -0,0 +1,11 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk"> |
||||
|
||||
<PropertyGroup> |
||||
<TargetFramework>netstandard2.0</TargetFramework> |
||||
</PropertyGroup> |
||||
|
||||
<ItemGroup> |
||||
<Compile Include="Library.fs" /> |
||||
</ItemGroup> |
||||
|
||||
</Project> |
@ -0,0 +1,5 @@
|
||||
namespace BFLibCore |
||||
|
||||
module Say = |
||||
let hello name = |
||||
printfn "Hello %s" name |
Loading…
Reference in new issue