Added working commands for Windows users

Windows users are likely to be using either Windows Terminal (which uses PowerShell) or PowerShell directly.
This commit is contained in:
Andrew Helwer 2020-06-20 17:51:01 -04:00 committed by Andrew Hlynskyi
parent c669e5ee15
commit dddbc2d4f7

View file

@ -80,6 +80,11 @@ You can test this parser by creating a source file with the contents "hello" and
echo 'hello' > example-file
tree-sitter parse example-file
```
Alternatively, in Windows PowerShell:
```pwsh
"hello" | Out-File example-file -Encoding utf8
tree-sitter parse example-file
```
This should print the following: