functions/Get-AnotherTool.ps1

Function Get-AnotherTool {
    <#
    .SYNOPSIS
    Get-AnotherTool
     
    .DESCRIPTION
    Get-AnotherTool
     
    .EXAMPLE
    PS C:\> Get-AnotherTool
    Running Get-AnotherTool
    #>


    [Cmdletbinding()]
    Param()

    Write-PSFHostColor "Getting another tool today" -DefaultColor Cyan
}