Skip to content

Commit 52fdb7b

Browse files
docs: Updating README
Linking to examples and history
1 parent 658dc03 commit 52fdb7b

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,10 @@ We can easily keep a list of these steps in memory, and draw them with [SVG](htt
3131

3232
We can make Turtle in any language.
3333

34-
This module makes Turtle in PowerShell.
34+
This module gives you Turtle in a PowerShell.
35+
36+
* [Amazing Examples](https://psturtle.com/Commands/Get-Turtle)
37+
* [A Brief History of Turtles](https://psturtle.com/History)
3538
### Installing and Importing
3639

3740
We can install Turtle from the PowerShell Gallery:
@@ -306,10 +309,10 @@ At the most basic, let's make an inscribed circle and square:
306309
A simple example of turtles containing turtles
307310
#>
308311
$inscribedCircle =
309-
turtle width 42 height 42 turtles @{
312+
turtle width 42 height 42 turtles ([Ordered]@{
310313
'square' = turtle square 42 fill '#4488ff' stroke '#224488'
311314
'circle' = turtle circle 21 fill '#224488' stroke '#4488ff'
312-
}
315+
})
313316
314317
$inscribedCircle | Save-Turtle ./InscribedCircle.svg
315318
$inscribedCircle | Save-Turtle ./InscribedCirclePattern.svg Pattern

README.md.ps1

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,10 @@ We can easily keep a list of these steps in memory, and draw them with [SVG](htt
5050
5151
We can make Turtle in any language.
5252
53-
This module makes Turtle in PowerShell.
53+
This module gives you Turtle in a PowerShell.
54+
55+
* [Amazing Examples](https://psturtle.com/Commands/Get-Turtle)
56+
* [A Brief History of Turtles](https://psturtle.com/History)
5457
"@
5558

5659
#endregion Introduction

0 commit comments

Comments
 (0)