I’m stuck on stage #008
I’ve tried typing in codecrafters submit, as the challenge suggested but it keeps failing.
Here are my logs:
This is a turbo test run. https://codecrafters.io/turbo
Running tests on your code. Logs should appear shortly...
[compile] Moved ./.codecrafters/run.sh → ./your_program.sh
[compile] Compilation successful.
[tester::#OO8] Running tests for Stage #OO8 (Print a prompt)
[tester::#OO8] Running ./your_program.sh
[tester::#OO8] Expected prompt ("$ ") but received ""
[tester::#OO8] Test failed
NOTE: This failure is expected! Uncomment code in app/main.py.
View instructions: https://app.codecrafters.io/courses/shell/stages/oo8
And here’s a snippet of my code
cat << ‘EOF’ > app/main.py
import sys
def main():
sys.stdout.write("$ ")
sys.stdout.flush()
if name == “main”:
main()
EOF



