Skip to content
This repository has been archived by the owner on Oct 23, 2018. It is now read-only.

Commit

Permalink
FSharp Hello World
Browse files Browse the repository at this point in the history
  • Loading branch information
shawnallen85 committed Oct 11, 2018
1 parent 93464f8 commit f942ff5
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 0 deletions.
16 changes: 16 additions & 0 deletions FSharp/fsharp-hello-world.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@

Microsoft Visual Studio Solution File, Format Version 12.00
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "fsharp-hello-world", "fsharp-hello-world\fsharp-hello-world.fsproj", "{6ED2BD69-B429-465B-8741-E4ABCAED861C}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{6ED2BD69-B429-465B-8741-E4ABCAED861C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6ED2BD69-B429-465B-8741-E4ABCAED861C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6ED2BD69-B429-465B-8741-E4ABCAED861C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6ED2BD69-B429-465B-8741-E4ABCAED861C}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal
6 changes: 6 additions & 0 deletions FSharp/fsharp-hello-world/Program.fs
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
open System

[<EntryPoint>]
let main argv =
printfn "Hello World from F#!"
0 // return an integer exit code
13 changes: 13 additions & 0 deletions FSharp/fsharp-hello-world/fsharp-hello-world.fsproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework>
<RootNamespace>fsharp_hello_world</RootNamespace>
</PropertyGroup>

<ItemGroup>
<Compile Include="Program.fs"/>
</ItemGroup>

</Project>

0 comments on commit f942ff5

Please sign in to comment.