3 lines
81 B
Text
3 lines
81 B
Text
function Get-GCD ($x, $y) {
|
|
if ($y -eq 0) { $x } else { Get-GCD $y ($x%$y) }
|
|
}
|