#import "NullNumber.h"

@implementation NullNumber

- (instancetype)init {
    self = [super initWithValue:nil];
    return self;
}

@end
