PowerShell mengeksekusi perintah hanya jika sebelumnya berhasil

# if the first echo success, do the second echo
echo "hello" ; if ($?) { echo "world !" }
Sorann