Guest User

Iron Scripter Challenge 4/30/2020 - Beginner

a guest
May 1st, 2020
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # .DATE: 5/1/2020
  2. # .AUTHOR: FULLFLOW
  3. # .CHALLENGE: https://ironscripter.us/a-powershell-word-play-challenge/
  4.  
  5. $w = "FULLFLOW the Iron Scripter!"
  6.  
  7. foreach ($a in [char[]]$w) {
  8. $b = [char]$a -as [int]
  9. $c += $b
  10. }
  11.  
  12. Write-Host "$c"
Add Comment
Please, Sign In to add comment