Skip to content

Commit e16db0d

Browse files
authored
PROJECT_LANG_1.mm
PROJECT_LANG_1.mm
1 parent b0856e6 commit e16db0d

File tree

1 file changed

+45
-0
lines changed

1 file changed

+45
-0
lines changed

PROJECT_LANG_1.mm

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
#!/bin/objective-csharp -x
2+
// Start of script
3+
#import </CoreFoundation/CFAttributedString.h>
4+
#import </Foundation/NSAttributedString.h>
5+
#import </Foundation/NSDictionary.h>
6+
#import </Foundation/NSMutableAttributedString.h>
7+
#import </UIKit/UIKit.h>
8+
using System.DotNet;
9+
using System.ObjectiveCSharp;
10+
11+
@namespace objectivecsharp-projectLanguage {
12+
13+
void projectLanguageFileOne(); {
14+
@interface classMain : superclassMain {
15+
// instance variables
16+
}
17+
+ classMethod1;
18+
+ (return_type)classMethod2;
19+
+ (return_type)classMethod3:(param1_type)param1_varName;
20+
21+
- (return_type)instanceMethod1With1Parameter:(param1_type)param1_varName;
22+
- (return_type)instanceMethod2With2Parameters:(param1_type)param1_varName
23+
param2_callName:(param2_type)param2_varName;
24+
NSLog.println("Project language file 1");
25+
NSLog.println("For: /SNU/2D/ProgrammingTools/IDE/Objective-CSharp");
26+
NSLog.println("About:");
27+
NSLog.println("I decided to make Objective-CSharp the main project language file for this project (SNU / 2D / Programming Tools / IDE / Objective-CSharp) as this is a Objective-CSharp IDE, and it needs its main language to be represented here.");
28+
break;
29+
@end
30+
}
31+
}
32+
33+
/* Output
34+
Project language file 1
35+
For: /SNU/2D/ProgrammingTools/IDE/Objective-CSharp
36+
About:
37+
I decided to make Objective-CSharp the main project language file for this project (SNU / 2D / Programming Tools / IDE / Objective-CSharp) as this is a Objective-CSharp IDE, and it needs its main language to be represented here.
38+
*/
39+
40+
/* File info
41+
* File type: Objective-C# source file (*.mm, *.cs)
42+
* File version: 1 (2023, Monday, April 3rd at 10:28 pm PST)
43+
* Line count (including blank lines and compiler line): 46
44+
*/
45+
// End of script

0 commit comments

Comments
 (0)