  │                                                                                                │
  │ +                                                                                              │
  │ + if __name__ == "__main__":                                                                   │
  │ +     main()                                                                                   │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘



  Result

  Created hello.py with a simple Hello World program:

  def main():
      print("Hello, world!")
  if __name__ == "__main__":
      main()


                                                                                                   
  Delete the file test.txt                                                                         
                                                                                                   
                                                                                                   

  I’ll first check if test.txt exists, then delete it if present.

  ⬢ Read test.txt

  ⬡ Deleting test.txt


 ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
 │ Delete file: test.txt                                                                          │
 └────────────────────────────────────────────────────────────────────────────────────────────────┘
 ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
 │ Delete this file?                                                                              │
 │  → Delete (y)                                                                                  │
 │    Keep (n)                                                                                    │
 └────────────────────────────────────────────────────────────────────────────────────────────────┘
                                                                    ctrl+r to review changed files

