``` powershell begin { function Func1{ Write-Host "def" } function Func2{ Write-Host "ghi" } } Write-Host "abc" end { Func1 Func2 } ```