Guest User

Untitled

a guest
Jul 19th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. # This is a simple program, just to show some features of our language
  2.  
  3. int a = 0;
  4. int b;
  5.  
  6. int i = 1;
  7.  
  8. while (i <= 3) do
  9. a = a + i;
  10. i = i + 1;
  11. end
  12.  
  13. if (a > 5) do
  14. b = 7;
  15. else
  16. b = 13;
  17. end
Add Comment
Please, Sign In to add comment