Windows PowerShell 5.0
Версия реализации Windows PowerShell языка программирования PowerShellВерсия Windows PowerShell, выпущенная 3 апреля 2014 года. Входит в состав Windows Management Framework 5.0.
Примеры:
Hello, World! - PowerShell (571):
Echo "Hello, World!"
Факториал - PowerShell (572):
function Get-Factorial ($n) {
if ($n -eq 0) {
return 1
}
$fact = 1
1..$n | ForEach { $fact *= $_ }
return $fact
}
foreach ($i in 0..16) {
echo ("{0}! = {1}" -f $i,(Get-Factorial $i))
}
Числа Фибоначчи - PowerShell (573):
function Get-Fibonacci ($n) {
if ($n -le 1) {
return 1
}
return (Get-Fibonacci ($n - 1)) + (Get-Fibonacci ($n - 2))
}
$output = ""
foreach ($i in 0..15) {
$output += ("{0}, " -f (Get-Fibonacci $i))
}
echo "$output..."
Комментарии
]]>blog comments powered by Disqus
]]>