File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed
Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change 1- This directory and it's subdirectories contain additional language keywords within PipeScript.
1+ # PipeScript Keywords
22
3- Most keywords will be implemented as a Transpiler that tranforms a CommandAST.
3+ PipeScript contains several new language keywords that are not found in PowerShell.
4+
5+ This directory contains the implementations of PipeScript language keywords.
6+
7+ ## Keyword List
48
59~~~ PipeScript{
610 [PSCustomObject]@{
@@ -12,6 +16,7 @@ Most keywords will be implemented as a Transpiler that tranforms a CommandAST.
1216 }}
1317~~~
1418
19+ # Examples
1520
1621~~~ PipeScript{
1722 @(foreach ($transpiler in Get-Transpiler -TranspilerPath $pwd) {
@@ -27,3 +32,7 @@ Most keywords will be implemented as a Transpiler that tranforms a CommandAST.
2732 }) -join ([Environment]::Newline * 2)
2833}
2934~~~
35+
36+
37+
38+ Keywords will generally be implemented as a Transpiler that tranforms a CommandAST.
You can’t perform that action at this time.
0 commit comments