def d(x)
  4*x
end

def a
  b 10
end

def b(x)
  x*10
end

def c(x)
  3*x
end

a()


syntax highlighted by Code2HTML, v. 0.9.1