Public/Get-Greeting.ps1

<#
  .SYNOPSIS
    Gets a greeting.
#>

Function Get-Greeting {
  Process {
    "Hello, world!"
  }
}