7 lines
124 B
PowerShell
7 lines
124 B
PowerShell
|
|
function Get-Factorial ($x) {
|
||
|
|
if ($x -eq 0) {
|
||
|
|
return 1
|
||
|
|
}
|
||
|
|
return (Invoke-Expression (1..$x -join '*'))
|
||
|
|
}
|