RosettaCodeData/Task/Detect-division-by-zero/PowerShell/detect-division-by-zero.ps1

7 lines
109 B
PowerShell
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
function div ($a, $b) {
try{$a/$b}
catch{"Bad parameters: `$a = $a and `$b = $b"}
}
div 10 2
div 1 0