Skip to content

Instantly share code, notes, and snippets.

@jonnyzheng
jonnyzheng / SettingController.m
Created August 18, 2013 14:39
PrettyTableViewCell sample
//
// SettingController.m
// Sharing
//
// Created by jonnyzheng on 8/18/13.
// Copyright (c) 2013 jonny. All rights reserved.
//
#import "SettingController.h"
#import "PrettyTableViewCell.h"
class Testclass
def mytest(&block)
result = block.call
return result * 2
end
end
def myclient
@jonnyzheng
jonnyzheng / gist:1928765
Created February 28, 2012 02:30
class include two module with same method name
module Sport
def walk
puts 'i am walking by sprot'
end
end
module Life
def walk