diff options
Diffstat (limited to 'server-v2/src')
-rw-r--r-- | server-v2/src/EpistmoolServer/EpistmoolServer.fsproj | 12 | ||||
-rw-r--r-- | server-v2/src/EpistmoolServer/Program.fs | 6 |
2 files changed, 18 insertions, 0 deletions
diff --git a/server-v2/src/EpistmoolServer/EpistmoolServer.fsproj b/server-v2/src/EpistmoolServer/EpistmoolServer.fsproj new file mode 100644 index 0000000..7b4f671 --- /dev/null +++ b/server-v2/src/EpistmoolServer/EpistmoolServer.fsproj @@ -0,0 +1,12 @@ +<Project Sdk="Microsoft.NET.Sdk"> + + <PropertyGroup> + <OutputType>Exe</OutputType> + <TargetFramework>net6.0</TargetFramework> + </PropertyGroup> + + <ItemGroup> + <Compile Include="Program.fs"/> + </ItemGroup> + +</Project> diff --git a/server-v2/src/EpistmoolServer/Program.fs b/server-v2/src/EpistmoolServer/Program.fs new file mode 100644 index 0000000..1014f80 --- /dev/null +++ b/server-v2/src/EpistmoolServer/Program.fs @@ -0,0 +1,6 @@ +open System + +[<EntryPoint>] +let main args = + printfn $"Arguments passed to function : %A{args}" + 0 |