Real Static Typed Script - RSTS project.
StaticScript is a language on top of TypeScript as frontend and LLVM as backend for code-generation to binary.
My talk about How it's working on hight level and about V8/JIT and etc
I prepared two talks on PiterJS meetup with explanation about how it was implemented
Part 1
Part 2
(Video)(Sorry, but due technical problems on meetup It was not recorded)
For latest stable version:
npm install -g static-script
Put it in calculate-pi.ts
{
function calculatePI(cycles: number): number {
let inside = 0;
for (let i = 0; i < cycles; i++) {
let x = Math.random() * 2 - 1;
let y = Math.random() * 2 - 1;
if ((x*x + y*y) < 1) {
inside++
}
}
return 4.0 * inside / cycles;
}
console_log(calculatePI(1000000000));
}
Next compile it:
$ ./bin/ssc calculate-pi.ts
Next run it:
$ time ./output/main
This will produce:
3.144800
./output/main 0,01s user 0,00s system 80% cpu 0,013 total
This project is open-sourced software licensed under the MIT License.
See the LICENSE file for more information.