Syntax: Recursion in PowerShell. • ID: #92 Code function Fact($n){ if($n -le 1){1}else{$n*(Fact($n-1))} } Fact 5 Notes You can copy this snippet and adapt it. For advanced, add real-world inputs, edge cases, and tests. ← Prev Next →