Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
Turtle
0.1.1
Types/Turtle/get_Heading.ps1
<#
.SYNOPSIS
Gets the turtle's heading.
.DESCRIPTION
Gets the current heading of the turtle.
#>
param
(
)
if
(
$null
-ne
$this
.
'.TurtleHeading'
)
{
return
$this
.
'.TurtleHeading'
}
return
0