Skip to content

Instantly share code, notes, and snippets.

@arnabanimesh
Created January 2, 2021 16:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arnabanimesh/b46b0a9f60b9ea7cb2ee3ae0eabc30e5 to your computer and use it in GitHub Desktop.
Save arnabanimesh/b46b0a9f60b9ea7cb2ee3ae0eabc30e5 to your computer and use it in GitHub Desktop.
Rustlings Windows Runner using VSCode and Windows Terminal
@REM RUSTLINGS Environment variable should point to the Rustlings folder containing the exercises
@echo off
setlocal enableDelayedExpansion
if %RUSTLINGS%==%RUSTLINGS% (
cd %RUSTLINGS%
wt -d . rustlings watch
start "" "%LOCALAPPDATA%\Programs\Microsoft VS Code\Code" .
exit
)
@arnabanimesh
Copy link
Author

arnabanimesh commented Jan 2, 2021

RUSTLINGS Environment variable should point to the Rustlings folder containing the exercises

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment