Editor for Џ (dzhe) - stories and a small test story written in Batch
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

startmenu.cmd.txt 346B

12345678910111213141516171819202122
  1. @echo off
  2. cls
  3. color f0
  4. @echo Hallo.
  5. @echo [1] Anfangen
  6. @echo [2] Weiter machen
  7. @echo [3] Beenden
  8. set startmenu=0
  9. set /p startmenu=
  10. if $%startmenu%$==$1$ goto BEGINN
  11. if $%startmenu%$==$2$ goto SAVE
  12. if $%startmenu%$==$3$ exit
  13. :BEGINN
  14. @echo "LOS GEHTS"
  15. @echo "1. Kapitel"
  16. @echo "2. Kapitel"
  17. :SAVE
  18. @echo "3. Kapitel"
  19. pause
  20. exit