10 lines
268 B
Smalltalk
10 lines
268 B
Smalltalk
|
|
Object subclass: AnotherClass [
|
||
|
|
"..."
|
||
|
|
initWithArray: anArray [ "single argument" ]
|
||
|
|
initWithArray: anArray andString: aString [
|
||
|
|
"two args; these two methods in usage resemble
|
||
|
|
a named argument, with optional andString argument"
|
||
|
|
]
|
||
|
|
"..."
|
||
|
|
]
|