-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPROJECT_LANG_1.csx
22 lines (22 loc) · 937 Bytes
/
PROJECT_LANG_1.csx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Start of script
// using namespace;
using System;
// I decided to make C# the main project language file for this project (SNU / 2D / Programming Tools / IDE / C#) as this is a C# IDE, and it needs its main language to be represented here.
class Program
{
public static void Main(string[] args)
{
Console.WriteLine("Project language file 1");
Console.WriteLine("For: SNU/2D/ProgrammingTools/IDE/C#");
Console.WriteLine("About:");
Console.WriteLine("I decided to make C# the main project language file for this project (SNU / 2D / Programming Tools / IDE / C#) as this is a C# IDE, and it needs its main language to be represented here.");
break;
}
return main();
break;
}
break;
// File version: 1 (2022, Friday, September 23rd at 10:10 pm PST)
// File type: C Sharp Source file (*.cs *.csx)
// Line count (including blank lines and compiler line): 23
// End of script