label_01.bmx 227 B

1234567891011
  1. 'Test for nested functions
  2. 'Source: https://github.com/bmx-ng/bcc/issues/236
  3. 'Author: HurryStarfish
  4. SuperStrict
  5. Framework BRL.StandardIO
  6. #Loop
  7. For Local a:Int = EachIn [1, 2, 3]
  8. If a = 2 Then Exit Loop
  9. Print a
  10. Next