Languages/Python/Templates/Python-Template-HelloWorld.ps1
function Template.HelloWorld.py { <# .SYNOPSIS Hello World in Python .DESCRIPTION A Template for Hello World, in Python. #> param( # The message to print. By default, "hello world". [Parameter(ValueFromPipelineByPropertyName)] [string] $Message = "hello world" ) process { @" print("$message") "@ } } |