@echo off
where bun >nul 2>nul
if %ERRORLEVEL%==0 (
  bun "%~dp0bricks.js" %*
) else (
  node "%~dp0bricks.js" %*
)
