home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Nebula 1995 August
/
NEBULA.mdf
/
SourceCode
/
Tutorial
/
Cookbook
/
01.hello.text_Ch6Ex1
/
MyHelloClass.m
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1993-01-18
|
231 b
|
19 lines
/* Generated by Interface Builder */
#import "MyHelloClass.h"
#import <stdio.h>
#import <stdlib.h>
@implementation MyHelloClass
- helloAction:sender
{
printf("hello, world\n");
system("date");
return self;
}
@end