/samples/parsing/manyfuncs.ooc

http://github.com/nddrylliog/oc · Unknown · 18 lines · 10 code · 8 blank · 0 comment · 0 complexity · b9186ed34820d354d09c1db4e6827a3d MD5 · raw file

  1. d := func {}
  2. c := func {
  3. d()
  4. }
  5. b := func {
  6. c()
  7. }
  8. a := func {
  9. b()
  10. }