gscheme/test/classes.m

13 lines
229 B
Mathematica
Raw Normal View History

2022-08-05 05:28:40 -04:00
#import <Foundation/Foundation.h>
#import <AppKit/AppKit.h>
int main(int argc, char **argv)
{
void *state;
Class cl;
while((cl = objc_next_class(&state))){
NSLog(@"%@\n", NSStringFromClass(cl));
}
}