class C1 def f1(x) 3*f2(x,5) end def f2(a,b) 2*(a+b) end 3*7 end # def f1(x) # def f2(a,b) # 2*(a+b) # end # 3*f2(x,5) # end