testdata/objc/FintExample/FintExample/FEData.m
1 | // |
2 | // FEData.m |
3 | // FintExample |
4 | // |
5 | // Copyright (c) 2014 Soichiro Kashima. All rights reserved. |
6 | // |
7 | |
8 | #import "FEData.h" |
9 | |
10 | @implementation FEData |
11 | |
12 | /////////////////////////////////////// |
13 | // Sample method |
14 | /////////////////////////////////////// |
15 | - (void)doSomething:(NSData *)d |
16 | { |
17 | NSString *s = @"//This is like a comment but just a string."; |
18 | // This is a commment |
19 | // This is a commment |
20 | @"//String"; |
21 | @"//String" @"//String"; // Comment |
22 | } |
23 | |
24 | @end |
25 |