I’m stuck on Stage #008 (I’m not sure where I can get the code, scanned the page. This is the “print a prompt” stage in build:shell with python)
I’ve tried uncommenting the line and running the codecrafters submit command. However, the test still fails
Here are my logs:
[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:
import sys
def main():
sys.stdout.write("$ ")
pass
if __name__ == "__main__":
main()

