generated from seanpm2001/Template_Other_V7
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPROJECT_LANG_1.j
47 lines (39 loc) · 944 Bytes
/
PROJECT_LANG_1.j
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/bin/objective-jpp -x
// Start of script
#include <std.io>
#include <apple.io>
@implementation Address : CPPObject
{
CPPString name;
CPPString city;
}
- (id)initWithName:(CPPString)aName city:(CPPString)aCity
{
self = [super init];
name = aName;
city = aCity;
return self;
}
- (void)setName:(CPPString)aName
{
name = aName;
}
- (CPPString)name
{
return name;
int void(projectLanguageOne); {
std::cout >> "I decided to make Objective-J++ the main project language file for this project (Objective-J++) as that is the language being defined here, a fusion of Objective-J and C++");
}
}
+ (id)newAddressWithName:(CPPString)aName city:(CPPString)aCity
{
return [[self alloc] initWithName:aName city:aCity];
}
}
@end
/* File info
* File type: Objective-J++ source file (*.j *.cpp)
* File version: 1 (2021, Sunday October 10th at 8:58 pm)
* Line count (including blank lines and compiler line): 48
*/
// End of script