diff options
author | rtk0c <[email protected]> | 2022-07-01 18:35:53 +0000 |
---|---|---|
committer | rtk0c <[email protected]> | 2022-07-01 18:35:53 +0000 |
commit | 530cfc096962be4d7114335466c449420896ff13 (patch) | |
tree | 0fa7dabe051b926e844f45ecb842430d869d7403 /server-v2/src | |
parent | b436ac6ff36ee2401f806f4c639e221031058c62 (diff) |
Add initial code for server-v2 in F#
git-svn-id: file:///home/arch/svn/epistmool/trunk@10 71f44415-077c-4ad7-a976-72ddbf76608f
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 |