blob: af590185a696e2aca114785ac2e44216b04fd21a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//
// NSNumber+LispExtensions.m
// Moxie
//
// Created by Brian Cully on Tue Sep 28 2004.
// Copyright (c) 2004 Brian Cully. All rights reserved.
//
#import "NSNumber+LispExtensions.h"
@implementation NSNumber (LispExtensions)
- (NSString *)lispForm
{
return [self description];
}
@end
|