andrew-johnson-4 / lambda-mountain

Compact Portable Assembler (5K SLOC)
MIT License
12 stars 0 forks source link

replace all "truthy" checks with non-zero calls #399

Open andrew-johnson-4 opened 1 month ago

andrew-johnson-4 commented 1 month ago
if x y z;

becomes 

if (non-zero x) y z;