leekscript-rs 0.1.0

LeekScript parser, formatter, and semantic analysis in Rust
Documentation
1
2
3
4
5
var   x=1;
function   f(  a,b  )  {
  return   a+b;
}
var   y  =  f(  2,3  );