mirror of
https://github.com/github/semantic.git
synced 2024-11-28 10:15:55 +03:00
22 lines
134 B
Ruby
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
|