Skip to content
Open

Done #196

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion objc-interpolate/FISAppDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,16 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(
* Write your code here!

*/

NSLog(@"Interpolate!");
NSLog(@"%@", @"Interpolate!");
NSLog(@"%@ %@", @"Interpolate!", @"Interpolate!");
NSLog(@"%@%@%@%@!", @"In", @"ter", @"po", @"late");
NSLog(@"%@-%@-%@-%@!", @"In", @"ter", @"po", @"late");
NSLog(@"You are not The Doctor!");
NSLog(@"%@", @"You are not The Doctor!");
NSLog(@"%@%@%@%@%@%@", @"You", @"are", @"not", @"The", @"Doctor", @"!");
NSLog(@"%@ %@ %@ %@ %@%@", @"You", @"are", @"not", @"The", @"Doctor", @"!");
NSLog(@"You are %@ %@!", @"not", @"The Doctor");
// Do not alter
return YES; //
///////////////
Expand Down