cm0002@lemmy.world to Programmer Humor@programming.dev · 1 day agoThe difference between programmers and testerslemmy.mlimagemessage-square94fedilinkarrow-up11.2Karrow-down111
arrow-up11.19Karrow-down1imageThe difference between programmers and testerslemmy.mlcm0002@lemmy.world to Programmer Humor@programming.dev · 1 day agomessage-square94fedilink
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