Advertisement
rotrevrep

Untitled

Oct 25th, 2013
427
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.23 KB | None | 0 0
  1. void Test (){
  2.         decode_loop:
  3.                 for (;;) {
  4.                     switch (mode) {
  5.                         case LNUM:
  6.                             mode = DNUM;
  7.                             goto case DNUM; // fall through
  8.                         case DNUM:
  9.                             mode = BLNUM;
  10.                             goto decode_loop;
  11.                             }
  12.                         }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement