blob: fbe79a0c66a5472e59532f2f7effff1f9ab5a2fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//
// NSNumber+LispExtensions.h
// Moxie
//
// Created by Brian Cully on Tue Sep 28 2004.
// Copyright (c) 2004 Brian Cully. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface NSNumber (LispExtensions)
- (NSString *)lispForm;
@end
|