home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OpenStep (Enterprise)
/
OpenStepENTCD.toast
/
OEDEV
/
DEV.Z
/
indentationExample
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1996-09-09
|
301 b
|
24 lines
- (void) foo
{
if (x)
{
[self doThis: 1
andThat: 2];
}
}
- (void) bar {
if (y) {
switch(y) {
case 1:
[self foo];
break;
case 2:
[self bar];
break;
default:
break;
}
}
}