function_02.bmx 273 B

1234567891011121314151617
  1. 'Test for nested functions
  2. 'Source: https://github.com/bmx-ng/bcc/issues/255
  3. 'Author: HurryStarfish
  4. SuperStrict
  5. Framework BRL.StandardIO
  6. Type T
  7. Function F1()
  8. Function G()
  9. End Function
  10. End Function
  11. Function F2()
  12. Function G()
  13. End Function
  14. End Function
  15. End Type