Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Remove notify

...

Code Block
languagejavascript
themeConfluence
if x > 5 then
  every {
    notifysend_directive("Hello World!", + "This is my first message!");
    notifysend_directive("Hello Again!", + "This is my second message!");
  }

...

Code Block
languagejavascript
themeConfluence
if x > 5 then {
  notifysend_directive("Hello World!", + "This is my first message!");
  notifysend_directive("Hello Again!", + "This is my second message!");
}

...

Code Block
languagejavascript
themeConfluence
if x > 5 then
  sample {
    notifysend_directive("Hello World!", + "This is one message!");
    notifysend_directive("Hello World!", + "This is another message!");
  }

...

Code Block
languagejavascript
themeConfluence
choose some_var {
    A => notifysend_directive("Hello World!", + "This is one message!");
    B => notifysend_directive("Hello World!", + "This is another message!");
}

...