plugins/Demo/public/Get-HelloWorld.ps1

function Get-HelloWorld {
    [CmdletBinding()]
    param (
        
    )
    
    begin {
        
    }
    
    process {
        "Hello World from Demo!"
    }
    
    end {
        
    }
}