为什么关键字是“then”? KRL 中需要

发布于 2024-11-10 06:52:33 字数 341 浏览 2 评论 0原文

当我在 KRL 规则中编写条件操作块时,我总是忘记“then”关键字。这是正确的语法:

rule with_conditions {
  select when pageview ".*"
  pre {
    cheese = "Camembert";
  }
  if (cheese like re/bert/) then {
    notify("Odd Cheese", "#{cheese} is unusual.");
  }
  fired {
    raise explicit event "odd_cheese";
  }
}

为什么是“then”?没有它不是一样清楚吗?

When I'm writing a conditional action block in a KRL rule I always forget the 'then' keyword. Here is the correct syntax:

rule with_conditions {
  select when pageview ".*"
  pre {
    cheese = "Camembert";
  }
  if (cheese like re/bert/) then {
    notify("Odd Cheese", "#{cheese} is unusual.");
  }
  fired {
    raise explicit event "odd_cheese";
  }
}

Why 'then'? Wouldn't it be just as clear without it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

迷迭香的记忆 2024-11-17 06:52:33

可能是因为该语言的作者认为添加 then 更自然。

Probably because the writers of the language felt that adding then was more natural.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文