1
1
mirror of https://github.com/github/semantic.git synced 2024-12-18 20:31:55 +03:00
semantic/bench/bench-fixtures/ruby/if-statement-functions.rb

22 lines
134 B
Ruby
Raw Normal View History

2018-03-08 03:47:23 +03:00
def foo()
"bipp"
end
def bar()
foo()
end
def baz()
bar()
end
def why()
return "elle"
end
if true
baz()
else
why()
end