TurboScript
TurboScript copied to clipboard
Super charged typed JavaScript dialect for parallel programming which compiles to WebAssembly
In order to move fast forward we need to integrate turboscript with typescript compiler. I will create a new branch for it.
**What?** User wants to have basic string support.
Need investigations. it seems optimize option ignored
**How** ```ts let arr1: int32[] = new Array(1); let arr2: int32[] = new int32[](2); // if possible and make sense let arr3: int32[] = new Array(3); // implicitly type detection...
**How** ```ts var i: int32 = 0; i++ do {...} while (...) ``` But ```ts for (var i: int32 = 0; i < 10; i++) {} // ok for (var...
**Code:** ```ts export function grayscaleImage(data: Array, width: int32, height: int32): void { let len: int32 = width * height; let i: int32 = 0; while (i < len) let r:...
**How?** ```ts const SOLAR_MASS: float64 = 4.0 * PI * PI; ```