summaryrefslogtreecommitdiffhomepage
path: root/sample/mrblib/sample.rb
blob: 1846b9b8586400c2a769e7cd54e26eb44a9f9be3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module Sample

  # A Sample test class
  class Test

    # Foo returns bar
    #
    # @return [String] bar!
    def foo
      return "bar"
    end
  end

end