RosettaCodeData/Task/Read-a-configuration-file/Smalltalk/read-a-configuration-file-3.st
2023-07-01 13:44:08 -04:00

5 lines
274 B
Smalltalk

fullname := dict at: 'fullname' ifAbsent:false.
needspeeling := dict at: 'needspeeling' ifAbsent:false.
favouritefruit := dict at: 'favouritefruit' ifAbsent:false.
otherfamily := dict at: 'otherfamily' ifAbsent:false.
seedsremoved := dict at: 'seedsremoved' ifAbsent:false.