Hello from Serverless CGI!
This minimal Python script demonstrates basic CGI functionality running on AWS Lambda ARM64.
# Minimal CGI script structure:
print("Content-Type: text/html")
print() # Empty line required by CGI spec
print("<html>...</html>")