Hi, On 11/28/13 02:26, Kevin Ingwersen wrote:
#import <Foundation/Foundation.h>
int main() {
NSString *str = „o.o“;
NSLog(str);
return 0;
}
make that:
NSString *str = @"o.o";Notice both the @ that marks this as a NSConstantString and also "" versus your quote marks!
Riccardo _______________________________________________ Discuss-gnustep mailing list [email protected] https://lists.gnu.org/mailman/listinfo/discuss-gnustep
