Created
February 7, 2026 19:52
-
-
Save KaushikShresth07/99e8c898c449d7b884dce9ed88d3becb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def print_title(): | |
| """Print the J.A.R.V.I.S ASCII art title.""" | |
| title = """ | |
| ╔══════════════════════════════════════════════════════════╗ | |
| ║ ║ | |
| ║ ██╗ █████╗ ██████╗ ██╗ ██╗██╗███████╗ ║ | |
| ║ ██║██╔══██╗██╔══██╗██║ ██║██║██╔════╝ ║ | |
| ║ ██║███████║██████╔╝██║ ██║██║███████╗ ║ | |
| ║ ██ ██║██╔══██║██╔══██╗╚██╗ ██╔╝██║╚════██║ ║ | |
| ║ ╚█████╔╝██║ ██║██║ ██║ ╚████╔╝ ██║███████║ ║ | |
| ║ ╚════╝ ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═══╝ ╚═╝╚══════╝ ║ | |
| ║ ║ | |
| ║ Just A Rather Very Intelligent System ║ | |
| ║ ║ | |
| ╚══════════════════════════════════════════════════════════╝ | |
| """ | |
| print(title) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment