summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorYannick Loriot <yannick.loriot@gmail.com>2013-08-13 16:34:12 +0200
committerYannick Loriot <yannick.loriot@gmail.com>2013-08-13 16:34:12 +0200
commit50c3526247810078b6c63e2cbaf79bc226e873dc (patch)
tree808b69eddd7132496e85a306591bb819d88f10de
parent5d800b25e427417c589f3cf2c3b19c18c178a11f (diff)
minor updates
-rw-r--r--objective-c.html.markdown20
1 files changed, 10 insertions, 10 deletions
diff --git a/objective-c.html.markdown b/objective-c.html.markdown
index 479d9ad5..6eac69a8 100644
--- a/objective-c.html.markdown
+++ b/objective-c.html.markdown
@@ -151,9 +151,9 @@ int main (int argc, const char * argv[])
{
NSLog(@"%d,", ii++); // ii++ increments ii in-place, after using its value.
} // => prints "0,"
- "1,"
- "2,"
- "3,"
+ // "1,"
+ // "2,"
+ // "3,"
// For loops statements
int jj;
@@ -161,9 +161,9 @@ int main (int argc, const char * argv[])
{
NSLog(@"%d,", ii++);
} // => prints "0,"
- "1,"
- "2,"
- "3,"
+ // "1,"
+ // "2,"
+ // "3,"
// Foreach statements
NSArray *values = @[@0, @1, @2, @3];
@@ -171,9 +171,9 @@ int main (int argc, const char * argv[])
{
NSLog(@"%@,", value);
} // => prints "0,"
- "1,"
- "2,"
- "3,"
+ // "1,"
+ // "2,"
+ // "3,"
// Try-Catch-Finally statements
@try
@@ -187,7 +187,7 @@ int main (int argc, const char * argv[])
{
NSLog(@"Finally");
} // => prints "Exception: File Not Found on System"
- "Finally"
+ // "Finally"
// Clean up the memory you used into your program
[pool drain];