Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialVitaly Myshlaev
5,883 Pointscompiler error
Double checked my answer and run it in Xcode. It works, but your complier show errors.
NSNumber *foxtrot; NSNumber *planck; foxtrot = [[NSNumber alloc] initWithInt:24]; planck = [[NSNumber alloc] initWithFloat:6.626]; NSLog(@"foxtrot %@", foxtrot); NSLog(@"planck %@", planck);
1 Answer
Stone Preston
42,016 PointsWhile your code is technically correct, the challenge asks you to use literals: ** Declare a variable of type NSNumber named foxtrot. Initialize it with a NSNumber literal of value 24 **
NSNumber *foxtrot = @24;
NSLog(@"foxtrot %@", foxtrot);
NSNumber *planck = @6.626;
NSLog(@"planck %@", planck);