macro
boot.janet on line 373, column 1
(when-with [binding ctor dtor] & body)
Similar to with, but if binding is false or nil, returns nil without
evaluating the body. Otherwise, the same as with.
(when-with [f (file/open "nofile.exists")]
(print "Realy?"))
# it just returns nil