Guest User

Untitled

a guest
Apr 26th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. # (...)
  2. "Not playing." if @current_song.nil? || !@current_song.playing?
  3.  
  4. # Will @current_song.playing?() be called if @current_song is nil?
  5.  
  6. # Or generally:
  7. foo() if a() || b()
  8.  
  9. # Say a returns true, will it then also call b() ?
Add Comment
Please, Sign In to add comment