This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # NOTE: Place at the top | |
| # --- Visual Studio Developer PowerShell bootstrap --------------------------- | |
| # Automatically enter the Visual Studio Developer PowerShell environment | |
| # in any new PowerShell session. Skips if already initialized (VSCMD_VER). | |
| try { | |
| if ($IsWindows -and -not $env:VSCMD_VER) { | |
| $vswhere = Join-Path ${env:ProgramFiles(x86)} 'Microsoft Visual Studio\Installer\vswhere.exe' | |
| if (Test-Path $vswhere) { | |
| # Get latest (including prerelease) VS instance info |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <chrono> | |
| #include <iostream> | |
| #include <thread> | |
| #include <vector> | |
| class Foo | |
| { | |
| public: | |
| void execute() const | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Homebrew build logs for llvm on macOS 10.15.4 | |
| Build date: 2020-04-01 22:57:11 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| using namespace std; | |
| int main(void) | |
| { | |
| cout << "Hello World\n"; | |
| return 0; | |
| } |