Sha256: cc79dfa2643d79d3cfe08584e33a3462e0fca88aa616d534cef7060a2b09c05a

Contents?: true

Size: 221 Bytes

Versions: 5

Compression:

Stored size: 221 Bytes

Contents

# frozen_string_literal: true

class HelloWorld
  # @begin: method
  def self.say
    "Hello World"
  end
  # @end: method

  # @begin: another_method
  def self.shout
    "HELLO WORLD"
  end
  # @end: another_method
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
kitabu-3.1.0 spec/support/mybook/code/code.rb
kitabu-3.0.3 spec/support/mybook/code/code.rb
kitabu-3.0.2 spec/support/mybook/code/code.rb
kitabu-3.0.1 spec/support/mybook/code/code.rb
kitabu-3.0.0 spec/support/mybook/code/code.rb