All pastes #2098020 Raw Edit

Something

public text v1 · immutable
#2098020 ·published 2012-01-01 22:54 UTC
rendered paste body
- (void)test
{
    NSString *astring = [[NSString alloc] initWIthString@"blah"];
    NSLog(@"%@", astring);
    return;
}


this gets translated into this by the compiler:

- (void)test
{
    NSString *astring = [[NSString alloc] initWIthString@"blah"];
    NSLog(@"%@", astring);
    [astring release];
    return;
}