초기 커밋.
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
@@ -0,0 +1,17 @@
|
||||
internal class Program
|
||||
{
|
||||
private static void Main(string[] args)
|
||||
{
|
||||
// 코멘트: 한 라인 코멘트는 두개의 슬래시 사용함
|
||||
int a = 1;
|
||||
|
||||
|
||||
int b = 1; // 코멘트: 하나의 문장 뒤에 코멘트를 달 수 있음
|
||||
|
||||
/*
|
||||
복수 라인에 대한 코멘트
|
||||
int c;
|
||||
int d;
|
||||
*/
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user