projects
/
ohcount
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Testsuite for factor programming language
[ohcount]
/
test
/
src_dir
/
ruby1.rb
1
require 'foo'
2
3
#comment
4
#comment
5
#comment with "string"
6
7
module Foo
8
class Bar #comment
9
def foo
10
"double_quoted string"
11
"embedded double_quote \""
12
more_code = true
13
'single_quoted string'
14
'embedded single_quote\''
15
more_code = true
16
"multiline dquote
17
more quote
18
# not a comment
19
"
20
end
21
end
22
end