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