# File lib/marc/record.rb, line 260 def to_s str = "LEADER #{leader}\n" for field in fields str += field.to_s() + "\n" end return str end