Skip to content

Commit ede7154

Browse files
authored
PROJECT_LANG_1_V1.m
An archive of the first version of the first project language file for this project.
1 parent 3a0085b commit ede7154

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
@interface classname : projectLanguageFileOne {
2+
// Start of script
3+
// instance variables
4+
}
5+
+ classMethod1;
6+
+ (return_type)classMethod2;
7+
+ (return_type)classMethod3:(param1_type)param1_varName;
8+
- (return_type)instanceMethod1With1Parameter:(param1_type)param1_varName;
9+
- (return_type)instanceMethod2With2Parameters:(param1_type)param1_varName
10+
param2_callName:(param2_type)param2_varName;
11+
@MacOS_10_1_ObjectiveC classname : superclassname {
12+
// # I decided to make Objective-C the main project language file for this project (SNU / 2D / Programming Tools / IDE / Objective-C) as this is a Objective-C IDE, and it needs its main language to be represented here.
13+
NSLog(@"I decided to make Objective-C the main project language file for this project (SNU / 2D / Programming Tools / IDE / Objective-C) as this is a Objective-C IDE, and it needs its main language to be represented here.");
14+
break;
15+
}
16+
@end
17+
/* File info
18+
* File version: 2022, Saturday, October 8th at 4:57 pm PST
19+
* File type: Objective-C Source file (*.m)
20+
* Line count (including blank lines and compiler line): 23
21+
* This script is incomplete, and needs lots of work */
22+
// End of script

0 commit comments

Comments
 (0)