script

script.git
git clone git://git.lenczewski.org/script.git
Log | Files | Refs

loop.script (77B)


      1 x : u64 = 10;
      2 y : u64 = 1;
      3 
      4 while (x) {
      5 	y = y x *;
      6 	x = x 1 -;
      7 }
      8 
      9 return y;