<#
.SYNOPSIS
	write-lowercase.ps1 [<text>]
.DESCRIPTION
	Writes the given text in lowercase letters.
.EXAMPLE
	PS> .\write-lowercase.ps1 "Hello World"
.NOTES
	Author: Markus Fleschutz ยท License: CC0
.LINK
	https://github.com/fleschutz/PowerShell
#>

param([string]$text = "")

if ($text -eq "" ) { $text = read-host "Enter the text to write" }

write-output $text.ToLower()
exit 0