cm0002@lemmy.world to Programmer Humor@programming.dev · 2 days agoThe difference between programmers and testerslemmy.mlimagemessage-square94fedilinkarrow-up11.21Kcross-posted to: [email protected]
arrow-up11.21KimageThe difference between programmers and testerslemmy.mlcm0002@lemmy.world to Programmer Humor@programming.dev · 2 days agomessage-square94fedilinkcross-posted to: [email protected]
minus-squareCodexArcanum@lemmy.dbzer0.comlinkfedilinkEnglisharrow-up12·1 day agoimport birthday; let myAge1 = 4; let sisterAge1 = 2; let myAge2 = 44; let sisterAge2 = birthday.deriveAge(myAge1, sisterAge1, myAge2); print(sisterAge2); Any bugs should be reported upstream. Please open a tracking issue to sync changes with eventual upstream fixes.
minus-squareNatanael@infosec.publinkfedilinkarrow-up2·1 day agoThe API has the wrong abstraction and the type definitions fail to capture necessary information (such as in which year you were of the given age) and thus conversions can not be guaranteed to be correct
import birthday; let myAge1 = 4; let sisterAge1 = 2; let myAge2 = 44; let sisterAge2 = birthday.deriveAge(myAge1, sisterAge1, myAge2); print(sisterAge2);
Any bugs should be reported upstream. Please open a tracking issue to sync changes with eventual upstream fixes.
The API has the wrong abstraction and the type definitions fail to capture necessary information (such as in which year you were of the given age) and thus conversions can not be guaranteed to be correct