macro_rules! alert { ($category:expr, $name:expr) => { ... }; }
Expand description
Convenience macro for the alert
function.
Example:
alert!(c"foo", c"bar");
is equivalent to
alert(c"foo", c"bar");
macro_rules! alert { ($category:expr, $name:expr) => { ... }; }
Convenience macro for the alert
function.
Example:
alert!(c"foo", c"bar");
is equivalent to
alert(c"foo", c"bar");