TurboScript icon indicating copy to clipboard operation
TurboScript copied to clipboard

Super charged typed JavaScript dialect for parallel programming which compiles to WebAssembly

Results 28 TurboScript issues
Sort by recently updated
recently updated
newest added

In order to move fast forward we need to integrate turboscript with typescript compiler. I will create a new branch for it.

enhancement
discussion

**What?** User wants to have basic string support.

v1.0.0 "nice to have"
in progress

Need investigations. it seems optimize option ignored

in progress

**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...

enhancement

**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:...

bug

**How?** ```ts const SOLAR_MASS: float64 = 4.0 * PI * PI; ```

feature
v1.0.0
syntax