<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Automatic Invocation (IIFE)</title>
</head>
<body>
    <script>
        (function() {
            alert("This function runs immediately!");
        })();
    </script>
</body>
</html>