Sha256: 443823db20e7e9db39f9cb887aab92667ab3d6a223d2062d1a116e4f910707f1
Contents?: true
Size: 424 Bytes
Versions: 26
Compression:
Stored size: 424 Bytes
Contents
class String # Returns an array of characters. # # "abc\n123".lines #=> ["abc","123"] # def lines self.split(/\n/) end end # _____ _ # |_ _|__ ___| |_ # | |/ _ \/ __| __| # | | __/\__ \ |_ # |_|\___||___/\__| # =begin test require 'test/unit' class TCString < Test::Unit::TestCase def test_lines assert_equal( ['a','b','c'], "a\nb\nc".lines ) end end =end
Version data entries
26 entries across 26 versions & 1 rubygems