Skip to content

Commit 0ec1153

Browse files
StartAutomatingStartAutomating
authored andcommitted
Merge branch 'PipeScriptFunAndFixes' of https://github.com/StartAutomating/PipeScript into PipeScriptFunAndFixes
1 parent 8473ad1 commit 0ec1153

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

Transpilers/Syntax/README.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,50 @@ This directory and it's subdirectories contain syntax changes that enable common
33

44
|DisplayName |Synopsis |
55
|------------------------------------------|------------------------------------------------------|
6+
|[Dot](Dot.psx.ps1) |[Dot Notation](Dot.psx.ps1) |
67
|[PipedAssignment](PipedAssignment.psx.ps1)|[Piped Assignment Transpiler](PipedAssignment.psx.ps1)|
78
|[RegexLiteral](RegexLiteral.psx.ps1) |[Regex Literal Transpiler](RegexLiteral.psx.ps1) |
89

910

1011

1112

13+
## Dot Example 1
14+
15+
16+
~~~PowerShell
17+
.> {
18+
[DateTime]::now |
19+
~~~
20+
21+
## Dot Example 2
22+
23+
24+
~~~PowerShell
25+
.> {
26+
"abc", "123", "abc123" |
27+
~~~
28+
29+
## Dot Example 3
30+
31+
32+
~~~PowerShell
33+
.> { 1
34+
~~~
35+
36+
## Dot Example 4
37+
38+
39+
~~~PowerShell
40+
.> { 1
41+
~~~
42+
43+
## Dot Example 5
44+
45+
46+
~~~PowerShell
47+
1.
48+
~~~
49+
1250
## PipedAssignment Example 1
1351

1452

0 commit comments

Comments
 (0)