Wordpress - WordPress Hooks System
Given the code below, what will be the output?
function say_hello() { echo 'Hello!'; }
add_action('init', 'say_hello');
remove_action('init', 'say_hello');