I am new to nim so i might sound extremely dumb, and if the title makes no sense I'll try to compare it to something all of us might be familiar with. This batch script does what I cant get a readLine(stdin) to do.
set /p input="v Rather than down here, Input goes here->"
While in nim it would look like this, but doesn't format exactly the same.
echo "v Input goes here, Rather than here->" var input: string = readLine(stdin)
I want it to format input like the batch file, rather than the way I seem to have nim do it.
echo automatically prints line end, you want write.
write(stdout, "This is the prompt -> ")
var input = readLine(stdin)