Guest User

Untitled

a guest
May 26th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. # Works
  2.  
  3. $x = "eggs"
  4.  
  5. $y = $x ? {
  6. "eggs" => "fried",
  7. "ham" => "fried",
  8. }
  9.  
  10. notice("$y")
  11.  
  12.  
  13. # Doesn't work
  14.  
  15. $x = "eggs"
  16.  
  17. $y = $x ? {
  18. "eggs", "ham" => "fried",
  19. }
  20.  
  21. notice($y)
Add Comment
Please, Sign In to add comment