function_03.bmx 293 B

12345678910111213141516171819202122232425
  1. 'Test for nested functions
  2. 'Source: https://github.com/bmx-ng/bcc/issues/251
  3. 'Author: HurryStarfish
  4. SuperStrict
  5. Framework BRL.Blitz
  6. Function F()
  7. G
  8. Function G()
  9. F
  10. End Function
  11. End Function
  12. Function F2()
  13. G2
  14. Function G2()
  15. H2
  16. End Function
  17. End Function
  18. Function H2()
  19. F2
  20. End Function