1
1
mirror of https://github.com/github/semantic.git synced 2024-11-28 10:15:55 +03:00
semantic/bench/bench-fixtures/ruby/function-definition.rb
Patrick Thomson be2d90f029 add ruby
2018-03-07 19:47:23 -05:00

20 lines
98 B
Ruby

def a()
"b"
end
def c(d)
"e"
end
def g(g_)
"i"
end
def h(i=1)
i
end
def i()
"j"
end