feat: 🔍 Testing rich

This commit is contained in:
2025-08-30 14:24:42 +01:00
parent aa82ed3ef2
commit f46ed58af5
5 changed files with 150 additions and 4 deletions
+6
View File
@@ -1,5 +1,11 @@
from rich import print, pretty
from rich.panel import Panel
def main():
print("Hello from devin!")
print("[italic red]Hello[/italic red] World!", locals())
print(["Rich and pretty", True])
print(Panel.fit("[bold yellow]Hi, I'm a Panel", border_style="red"))
if __name__ == "__main__":