alert

Macro alert 

Source
macro_rules! alert {
    ($category:expr, $name:expr) => { ... };
}
Expand description

Convenience macro for the alert function.

Example:

alert!("foo", "bar");

is equivalent to

alert("foo", "bar");