Wordpress - WordPress Hooks System
Given the code below, what will be the output when the page loads?
function greet() {
echo 'Hello!';
}
add_action('wp_footer', 'greet');
remove_action('wp_footer', 'greet');