Skip to content

Commit 038fb46

Browse files
author
James Brundage
committed
feat: Turtle.Save() ( Fixes #105 )
1 parent 01c3592 commit 038fb46

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

Types/Turtle/Save.ps1

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<#
2+
.SYNOPSIS
3+
Saves the turtle.
4+
.DESCRIPTION
5+
Saves the current turtle to a file.
6+
.LINK
7+
Save-Turtle
8+
#>
9+
param(
10+
[string]
11+
$FilePath,
12+
13+
[string]
14+
$Property
15+
)
16+
17+
return $this | Save-Turtle $FilePath -Property $Property

0 commit comments

Comments
 (0)