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

22 lines
134 B
Ruby

def foo()
"bipp"
end
def bar()
foo()
end
def baz()
bar()
end
def why()
return "elle"
end
if true
baz()
else
why()
end