while_pre_dec 278 B

1234567891011121314151617181920212223
  1. void main() {
  2. int a = 5;
  3. while(a > 0) {
  4. test(--a);
  5. }
  6. a = 5;
  7. while(a > 0) {
  8. test(a);
  9. --a;
  10. }
  11. long b = 5L;
  12. while(b > 0L) {
  13. test(--b);
  14. }
  15. b = 5L;
  16. while(b > 0L) {
  17. test(b);
  18. --b;
  19. }
  20. }