We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On Windows, the Zig: Run Zig command attempts to invoke a command line in Powershell. This command fails for the following:
PS C:\[redacted]> "c:\[pathto]\zig.exe" run "c:\[pathto]\main.zig" At line:1 char:113 + ... age\ziglang.vscode-zig\zig\windows-x86_64-0.13.0\zig.exe" run "c:\Use ... + ~~~ Unexpected token 'run' in expression or statement. + CategoryInfo : ParserError: (:) [], ParentContainsErrorRecordException + FullyQualifiedErrorId : UnexpectedToken
A workaround I've found is to start the command line with an ampersand, &, known as the Powershell call operator.
&
PS C:\[redacted]> & "c:\[pathto]\zig.exe" run "c:\[pathto]\main.zig" Hello, World!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
On Windows, the Zig: Run Zig command attempts to invoke a command line in Powershell. This command fails for the following:
A workaround I've found is to start the command line with an ampersand,
&
, known as the Powershell call operator.The text was updated successfully, but these errors were encountered: