module Letov

Constants

LYRICS

Public Class Methods

say() click to toggle source
# File lib/letov.rb, line 6
def self.say
  song = rand(LYRICS.size)
  string = rand(LYRICS[song]['lyrics'].size)
  LYRICS[song]['lyrics'][string] == nil ? self.say : LYRICS[song]['lyrics'][string]  
end