This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

TASK: Run a Python script async that exits with code 99 ('import sys; sys.exit(99)'). Poll it with process_get_status until it is no longer running, capture the exit status, and save the number '99' to 'exit_code_status.txt'.
----------------------------------------
Loading...
┌─── Python Source Code ─────────────────────────────────────
│  1 | import sys; sys.exit(99)
└────────────────────────────────────────────────────────────
-> Writing file: exit_code_status.txt
  CHANGES: exit_code_status.txt 
LINE OLD | LINE NEW
--------------------------------------------------------------------------------------------------------------------------------------------
1 - Exit status: 99  |
| 1 + 99 
The script exited with code 99, and the exit code has been saved to 'exit_code_status.txt'.