Initial commit

master
11.IB 2020-09-16 13:24:43 +02:00
commit cc8e0f133c
4 changed files with 18 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
/bin/
/obj/

7
Program.cs Normal file
View File

@ -0,0 +1,7 @@
using System;
class Program {
static void Main(string[] args) {
// Your code goes here
}
}

3
README.md Normal file
View File

@ -0,0 +1,3 @@
# Logic operations, branching
<!-- add description here -->

6
Template.csproj Normal file
View File

@ -0,0 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
</Project>