(lab 5) feat: add Hello World example

main
Artem-Darius Weber 3 weeks ago
parent 752eaf1efc
commit 592fddf73d

@ -0,0 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Include="Program.fs" />
</ItemGroup>
</Project>

@ -0,0 +1,2 @@
// For more information see https://aka.ms/fsharp-console-apps
printfn "Привет, мир! Добро пожаловать в F#!"
Loading…
Cancel
Save