So I'm trying to create a simple ROCK-PAPER-SCISSORS game wherein I want to display ASCII artwork for the individual elements. It would be great if I could store them into variables in some way for the further logic to follow up & use those variables.
....
.....
.......
........
........
........
........ .........
.................. ..
................ ..
......... .... ....
.. ....
.. ...
... ...
... ..
...........
This is the piece of art & when I try to store it into a variable like:
set /p scissors = " the above art "
I get errors.
Does someone know how to resolve this?