mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-24 01:51:38 +00:00
corrected issue on floating point literals.
This commit is contained in:
parent
5a87423e20
commit
3ea52a1084
@ -80,7 +80,7 @@ int main (int argc, const char * argv[])
|
|||||||
NSLog(@"%f", piFloat);
|
NSLog(@"%f", piFloat);
|
||||||
|
|
||||||
NSNumber *piDoubleNumber = @3.1415926535;
|
NSNumber *piDoubleNumber = @3.1415926535;
|
||||||
piDouble = [piDoubleNumber doubleValue];
|
double piDouble = [piDoubleNumber doubleValue];
|
||||||
NSLog(@"%f", piDouble);
|
NSLog(@"%f", piDouble);
|
||||||
|
|
||||||
// BOOL literals
|
// BOOL literals
|
||||||
|
Loading…
Reference in New Issue
Block a user