fisl

fisl is scheme lox
git clone git://git.alexkarle.com.com/fisl
Log | Files | Refs | README | LICENSE

while.lox (58B) [raw]


      1 var x = 10;
      2 while (x > 0) {
      3     print x;
      4     x = x - 1;
      5 }