File tree Expand file tree Collapse file tree 1 file changed +38
-0
lines changed
Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments