1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-21 02:27:10 +03:00
mal/powershell/step0_repl.ps1
2016-08-20 15:09:19 -05:00

9 lines
146 B
PowerShell

while ($true) {
Write-Host "user> " -NoNewline
$line = [Console]::ReadLine()
if ($line -eq $null) {
break
}
"$line"
}