computing
  • 19

Solved Why Does My Batch File Say ‘ECHO Is Off’

  • 19

I made a program. When I ran it, at the end it said, ‘ECHO is off.’ This is my code,

@ECHO off
:start
echo The Adventure of You
:tree
echo The High Tree
echo You wake up at the top of a tall sycamore tree
echo.
echo You go down
echo.
echo The tree is 1000 feet long. It will take you all day to get down.
echo.
echo You find some shelter
echo.
echo You sit in there thinking, ‘How did I get here?’
echo
start README.txt
pause >nul
exit

message edited by computers23

Share

1 Answer

  1. Because you use “echo” rather than “echo.” near the end of the file.
    • 1