Skip to content

Commit 2aef298

Browse files
author
James Brundage
committed
Updating Keywords README.ps1.md
1 parent 9d7a333 commit 2aef298

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

Transpilers/Keywords/README.ps1.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
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.

0 commit comments

Comments
 (0)