Skip to content

Instantly share code, notes, and snippets.

View edthix's full-sized avatar
💭
Online

Edham Arief Dawillah / edthix edthix

💭
Online
View GitHub Profile
# objective-j
@implementation Person : CPObject
{
CPString name;
}
@end
# ruby
class Person < CPObject
attr_reader :namer
# objective-j & ruby comparison - Methods
@implementation Person:CPObject
{
CPString name;
-(void) setName: (CPString)aName
{
name=aName;
}