$tag = 'some::tag'

@@notify { "exported notification": tag => $tag }
@notify { "virtual notification": tag => $tag }
notify { "local notification": tag => $tag }

Notify<<| tag == $tag |>>
Notify<| tag == $tag |>

define testify() {
        notify { $name : }
}

@@testify { "exported testification": tag => $tag }
@testify { "virtual testification": tag => $tag }
testify { "local testification": tag => $tag }

Testify<<| tag == $tag |>>
Testify<| tag == $tag |>