1
1
mirror of https://github.com/github/semantic.git synced 2024-12-28 09:21:35 +03:00
semantic/bench/bench-fixtures/ruby/function-definition.rb
2018-05-11 16:37:04 -04: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