Guest User

Untitled

a guest
May 20th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. #!/usr/bin/env ruby
  2.  
  3. # Block sort in ruby
  4. content = STDIN.read
  5. lines = content.split(/\n\n+/).sort
  6. lines.each { |line| puts line + "\n\n" }
Add Comment
Please, Sign In to add comment