macro
boot.janet on line 435 , 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