On 7/4/25 09:24, Walter Bright wrote: > > 2. code that is not executed is not vulnerable to attack ```d void foo(){ openDoor(); performWork(); scope(exit){ closeDoor(); lockDoor(); } } ```