1
1
mirror of https://github.com/github/semantic.git synced 2024-12-22 22:31:36 +03:00
semantic/bench/bench-fixtures/ruby/function-definition.rb

20 lines
98 B
Ruby
Raw Normal View History

2018-03-08 03:47:23 +03:00
def a()
"b"
end
def c(d)
"e"
end
def g(g_)
"i"
end
def h(i=1)
i
end
def i()
"j"
end