mirror of
https://github.com/github/semantic.git
synced 2024-12-18 20:31: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
|