Advertisement
techno-

Untitled

Sep 14th, 2024
17
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. init{
  2. int x=0;
  3. do
  4. :: x<=9 ->
  5. x=x+1
  6. printf("x=%d\n",x);
  7. if
  8. :: x==10 -> break;
  9. :: else->
  10. fi
  11. od;
  12. }
  13.  
  14.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement