Codebase list ohcount / 71f18fd0-2918-4673-9432-32d77816000d/main test / src_dir / ruby1.rb
71f18fd0-2918-4673-9432-32d77816000d/main

Tree @71f18fd0-2918-4673-9432-32d77816000d/main (Download .tar.gz)

ruby1.rb @71f18fd0-2918-4673-9432-32d77816000d/mainraw · history · blame

require 'foo'

#comment
 #comment
  #comment with "string"

module Foo
	class Bar #comment
		def foo
			"double_quoted string"
			"embedded double_quote \""
			more_code = true
			'single_quoted string'
			'embedded single_quote\''
			more_code = true
			"multiline dquote
			more quote
			# not a comment
			"
		end
	end
end