rb.rb 150 B

123456789101112131415161718192021222324252627282930313233
  1. def f(x)
  2. x + 1
  3. end
  4. def g(x)
  5. x + 1
  6. end
  7. def h(x)
  8. x + 1
  9. end
  10. def a
  11. 1
  12. end
  13. def b
  14. 1
  15. end
  16. def c
  17. 1
  18. end
  19. Chaining style:
  20. a.
  21. b.
  22. c
  23. a.b.
  24. c