テストページ1

test heading 2

test paragraph

echo 'This is the test page1'
test quote

テストページ3

test heading 2

test paragraph

function hoge() {
  return 'This is the test page3';
}
test quote

テストページ2

class Hoge
  attr_reader :msg

  def initialize(msg)
    @msg = msg
  end

  def hello
    puts "Hello, #{msg}"
  end
end
def hello
  puts 'Hello'
end