Skip to content

Instantly share code, notes, and snippets.

@yonlau
yonlau / README-Template.md
Created July 20, 2017 07:22 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

#pragma mark - Table view data source
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
// Return the number of sections.
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
// Return the number of rows in the section.
return array_Strings.count;
}
def firstchar(string)
result = string.split.map{|w|w[0]}.join
puts result
end
firstchar("what you see is what you get")