I want to make a batch file wait for 0.5 or 0.25 seconds.
I have already tried timeout /t 0.5
but it is not working.
It is something like:
@echo off color a cls :top echo %random% timeout /t 0.5 echo %random% goto top
Edit : Thanks for the answers y'all