方案和 if 条件
当条件不满足时,我不想返回任何内容,例如,
(if x y z)
如果不满足x,则将执行z,并且我不想在z处执行任何操作,就像python的“pass”一样
I want to return nothing when if condition is not met, for instance
(if x y z)
so if x is not met, z will be executed and I want to do nothing at z, just same as pythons "pass"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自R5RS:
因此您的
if
表达式变为:From R5RS:
So your
if
expression becomes: