@echo off
rem launcher Windows: usa a TUI Python se houver; senao o batch puro.
setlocal
set "DIR=%~dp0"
where python >nul 2>&1 && ( python "%DIR%roteiro.py" %* & goto :eof )
where py >nul 2>&1 && ( py "%DIR%roteiro.py" %* & goto :eof )
call "%DIR%roteiro.cmd" %*
