-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
C# 언어지원 추가 #104
Comments
만세! 2016-08-04 12:46 GMT-04:00 imyoyo [email protected]:
JongMan |
@jongman |
모잘라면 늘리면 됨 ㅋㅋ 2016-08-08 21:54 GMT-04:00 imyoyo [email protected]:
JongMan |
HELLOWORLD 예제 using System;
public class Program
{
public static void Main(string[] args)
{
int n = Int32.Parse(Console.ReadLine());
for(int i=0;i<n;i++)
{
Console.WriteLine("Hello, " + Console.ReadLine() + "!");
}
}
} |
https://algospot.com/forum/read/3754/ 의 kevin13 님과 상의해보니 CoreCLR 이 더 적절한 것으로 얘기가 흘렀습니다.
그래서 일단 CoreCLR (.NET Core SDK 1.0.0-preview2-003121) 로 시도(=삽질)하고 있습니다.
의견 환영요 ㅠ
The text was updated successfully, but these errors were encountered: