12 lines
198 B
Smalltalk
12 lines
198 B
Smalltalk
accessing
|
|
stats
|
|
|
|
^ Dictionary new
|
|
addAll: {
|
|
'Edge' -> self edge .
|
|
'Heart' -> self heart.
|
|
'Iron' -> self iron.
|
|
'Shadow' -> self shadow.
|
|
'Wits' -> self wits
|
|
};
|
|
yourself |