Advertisement
Guest User

test

a guest
Mar 24th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. a = 1;
  2. ++a;
  3. --a;
  4. a++;
  5. a--;
  6.  
  7. n = pi = 3.14159265358979323846;
  8. nl = "\n";
  9. a = "";
  10.  
  11. for(local i=0; i<1; ++i){
  12. if(i!=2){
  13. b = 1.2;
  14. local a = b;
  15. print(::a, nl);
  16.  
  17. }
  18. else
  19. ::n=123.123456;
  20. }
  21.  
  22. while ( yy >= 3) {
  23. if ( yy and 1 == true)
  24. break;
  25. else if ( 4 % yy == false)
  26. continue;
  27. else {
  28. yy_underline--;
  29. return;
  30. }
  31. }
  32.  
  33.  
  34. function Node (){
  35. return [
  36. {"New": (function (arg) { return arg;})},
  37. {a:"a"}
  38. ];
  39. }
  40.  
  41. function Node2 (arg1, arg2, arg3){
  42. return [ [1], [2] ];
  43. }
  44.  
  45. Node();
  46. Node2(a,2,3,4,5, Node().new());
  47.  
  48. pinakas..i = 5;
  49. pinakas[i] = 3.45
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement